[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★

留言

熱門文章

[C#] 將DataTable轉換成Html格式表格

[MS SQL] 查詢所有Procedure