2012年10月23日 星期二

ASP.NET 提示使用者下載檔案

Response.Clear()
Response.Buffer = True
Response.HeaderEncoding = System.Text.Encoding.GetEncoding("big5")
Response.AppendHeader("Content-Disposition", "attachment;filename=" + "交通住宿名單.xml")
Response.ContentType = "application/vnd.ms-excel"
Response.Write(filestream)
Response.End()

沒有留言:

強制網頁不要被瀏覽器翻譯影響

中翻中會變得很奇怪,使用以下設定禁止翻譯網頁 <html lang="zh-Hant-TW" translate="no" class="notranslate"> <head>     <...