您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關利用Asp.net怎么實現一個文件下載功能,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
首先有一個html頁面,頁面有一個鏈接,點擊鏈接彈出文件下載/保存(類似迅雷下載鏈接)
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>文件下載</title> <meta charset="utf-8" /> </head> <body> <!--該方式不行,1:如果訪問的是類似文本等瀏覽器可以處理的文件,則是瀏覽器打開顯示的方式,并不是文件下載;2:如果訪問的是App_Data文件夾里的文件,由于.net的機制不允許訪問App_Data文件夾資源,所以會報“請求篩選模塊被配置為拒絕包含 hiddenSegment 節的 URL 中的路徑。”--> <a href="App_Data/readme.txt" rel="external nofollow" >下載readme.txt文件</a> <br /> <a href="DownloadFileHandler.ashx" rel="external nofollow" >下載readme.txt文件</a> </body> </html>
一般處理程序的代碼如下
using System.IO; using System.Web; namespace Zhong.Web { /// <summary> /// DownloadFileHandler 的摘要說明 /// </summary> public class DownloadFileHandler : IHttpHandler { public void ProcessRequest(HttpContext context) { string filePath = context.Server.MapPath("~/App_Data/readme.txt"); FileStream fs = new FileStream(filePath, FileMode.Open); byte[] bytes = new byte[fs.Length]; fs.Read(bytes, 0, bytes.Length); fs.Dispose(); context.Response.ContentType = "application/octet-stream"; context.Response.AddHeader("Content-Disposition", "attachment; filename=readme.txt"); context.Response.BinaryWrite(bytes); context.Response.Flush(); //大文件下載的解決方案 //context.Response.ContentType = "application/x-zip-compressed"; //context.Response.AddHeader("Content-Disposition", "attachment;filename=z.zip"); //string filename = Server.MapPath("~/App_Data/move.zip"); //context.Response.TransmitFile(filename); } public bool IsReusable { get { return false; } } } }
以上就是利用Asp.net怎么實現一個文件下載功能,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。