[Asp.Net] 下載指定目錄下的文件
下載指定目錄下的文件
protected void DownloadFile( string filename, string filepath)
{
Response.Clear();
Response.AddHeader( "Content-Disposition" , "attachment; filename=" + HttpUtility .UrlEncode(filename, System.Text.Encoding .Default));
Response.ContentType = "application/octet-stream" ;
Response.TransmitFile(filepath);
Response.End();
}
參考網址:
By Hao★
留言
張貼留言
歡迎留言