2008/07/15

[Asp.Net]GridView的OnSorting參數永遠回傳SortDirection.Ascending

GridView 的 OnSorting 事件, 在 GridViewSortEventArgs 參數裡的 SortDirection 並不會因為使用者的點選而傳入 SortDirection.Ascending / SortDirection.Descending.
只能透過 ViewState / Session 等儲存機制來記憶上一次的排序方向.
例如在 OnSorting 的事件中使用 Session做狀態儲存:
if (Session["SortDirection"] == null) {
    //因預設是ASC,所以觸發此事件時, 應設定為DESC 
    Session["SortDirection"] = SortDirection.Descending;
}
else
{
    //ASC<-->DESC(對調) 
    Session["SortDirection"] = (((SortDirection)Session["SortDirection"]) ==
    SortDirection.Ascending) ? SortDirection.Descending : SortDirection.Ascending;
}
Session["SortExpression"] = e.SortExpression;

2008/07/14

[SQL Server 2005]遞迴查詢

在資料表中常見到一種 ID, Parent 的用法, 目的在於想使用遞迴的方式建立起樹狀的資料結構.
例如在程式中進行以下的作業:
while(true)
{
//SELECT ID, Parent, Name FROM Table1 WHERE Parent=@ID
}
透過迴圈, 一次次地到資料庫查詢這個 Node 相關的 Parent/Child 資料.

2008/06/13

[Asp.Net]解決在aspx檔中使用Response.Write輸出script的"常數中包含新行字元"錯誤

在aspx中加入如下的程式將造成執行期出現錯誤 (編譯器錯誤訊息: CS1010: 常數中包含新行字元):
Response.Write("<script type=\"text/javascript\">window.open('./CSV/"
+ strFileCSVName + "','_blank');</script>;");
查了一些網路討論, 發現問題出在</script>標籤.
只要修改成以下的程式, 就可以順利通過執行期的編譯.
Response.Write("<script type=\"text/javascript\">window.open('./CSV/"
 + strFileCSVName + "','_blank');<" + "/script" + ">");
重點在於將拆開, 使其不在同一個字串中.

2008/06/11

[ASP.Net]使用System.Web.Caching做網頁資料的Cache

因為Asp.Net中常被使用的 <sqldatasource>, 並無 Exception Handle 的機制.
所以就算用了 <sqldatasource> 的 Caching, 可能還是有某種程度的風險.
例如: 在 Caching 時間到的時候, 剛好資料庫無法連線.
概念上簡單地說, 就是當 Caching 出錯時, 能保留上一次所儲存的資料, 以讓網頁正常運作.

[ASP.Net]透過WebRequest抓取網路上的圖檔

以下程式是透過 WebRequest 的方式將網路中的圖檔存到本機:

string Url = "http://l.yimg.com/tw.yimg.com/i/tw/hp/spirit/yahoo_logo.gif";
string FullFileName = @"c:\tmp\yahoo_logo.gif";
HttpWebRequest webReq = (HttpWebRequest)WebRequest.Create(Url);
//預設TimeOut是30秒
webReq.Timeout = 30000;
HttpWebResponse webResp = (HttpWebResponse)webReq.GetResponse();
//檢查儲存的檔案路徑,其目錄是否存在
if (!Directory.Exists(Path.GetDirectoryName(FullFileName)))
{
    //建立目錄
    Directory.CreateDirectory(Path.GetDirectoryName(FullFileName));
}
using (BinaryReader imgStream = new BinaryReader(webResp.GetResponseStream()))
{
    File.WriteAllBytes(FullFileName, imgStream.ReadBytes((int)webResp.ContentLength));
}