ASP.NET文件的下载
生活随笔
收集整理的這篇文章主要介紹了
ASP.NET文件的下载
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
?///?<summary>///?下載文件///?</summary>///?<param?name="filePath">文件的路徑</param>///?<param?name="fileName">文件名(有時候文件名存在數(shù)據(jù)庫中用于替換路徑中的文件名)</param>public?void?FileDownLoad(string?filePath,?string?fileName){//判斷文件是否存在if?(System.IO.File.Exists(filePath)){FileInfo?file?=?new?FileInfo(filePath);Response.Clear();Response.AddHeader("Content-Disposition",?"attachment;?filename="?+?Server.UrlEncode(fileName));//解決中文文件名亂碼???Response.AddHeader("Content-Length",?file.Length.ToString());Response.ContentType?=?"application/octet-stream";Response.Filter.Close();Response.WriteFile(file.FullName);Response.End();}}
轉(zhuǎn)載于:https://www.cnblogs.com/malianyong/archive/2013/01/18/2866646.html
總結(jié)
以上是生活随笔為你收集整理的ASP.NET文件的下载的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 子宫后位是什么病,会影响女性受孕率吗?
- 下一篇: emacs 探索之五:latex配置