Archive for category ASP.NET

Date: December 28th, 2009
Cate: ASP.NET

ASP.NET 直接寫出檔案, 並該使用者跳出下載對話框

Response.AppendHeader(“Content-Disposition”, “attachment; filename=” & Server.UrlPathEncode(Filename))
Response.TransmitFile(PathAndFilename)
Filename 記得要用 UrlPathEncode.
附註寫出直接寫出圖檔的方式, 沒測試過, 有空再來試試. 其中 bmp 是 BMP 物件.
Response.ContentType = “image/jpeg”;
Response.AppendHeader(“Content-Disposition”,“attachment; filename=LeftCorner.jpg”);
 
bmp.Save(Response.OutputStream, ImageFormat.Jpeg);
參考網站 http://www.west-wind.com/weblog/posts/76293.aspx

Date: December 18th, 2009
Cate: ASP.NET, Tip

ASP.NET Constant

以前用PHP常數大部份都會訂一頁專門存變數
換到ASP.NET就把我搞的一頭霧水

Date: December 8th, 2009
Cate: ASP.NET, IIS, 主機

在 Windows 2008 上面案裝 ASP.NET 1.1 的 Web Application

關閉 UAC:
http://pcuser.pixnet.net/blog/post/17368385
http://social.technet.microsoft.com/Forums/zh-TW/vistazhcht/thread/927049e5-2df6-459d-aa8f-2917138fb8a3