如何在asp.net中实现文件下载

时间:2008-09-01 09:21:15

标签: asp.net file download

使用asp.net 2.0从网页上实现下载操作的最佳方法是什么?

在名为[Application Root] / Logs的目录中创建操作的日志文件。我有完整的路径,并希望提供一个按钮,单击该按钮将从IIS服务器下载日志文件到用户本地PC。

2 个答案:

答案 0 :(得分:36)

这有用吗:

http://www.west-wind.com/weblog/posts/76293.aspx

Response.ContentType = "application/octet-stream";
Response.AppendHeader("Content-Disposition","attachment; filename=logfile.txt");
Response.TransmitFile( Server.MapPath("~/logfile.txt") );
Response.End();

Response.TransmitFile是发送大文件的可接受方式,而不是Response.WriteFile。

答案 1 :(得分:11)

http://forums.asp.net/p/1481083/3457332.aspx

string filename = @"Specify the file path in the server over here....";
FileInfo fileInfo = new FileInfo(filename);

if (fileInfo.Exists)
{
   Response.Clear();
   Response.AddHeader("Content-Disposition", "attachment; filename=" + fileInfo.Name);
   Response.AddHeader("Content-Length", fileInfo.Length.ToString());
   Response.ContentType = "application/octet-stream";
   Response.Flush();
   Response.TransmitFile(fileInfo.FullName);
   Response.End();
}


更新

初始代码

Response.AddHeader("Content-Disposition", "inline;attachment; filename=" + fileInfo.Name);

具有“内联;附件”,即内容处置的两个值。

不知道它何时开始,但在Firefox 中没有出现正确的文件名。将显示文件下载框,其中包含网页名称及其扩展名( pagename.aspx )。下载后,如果将其重命名为实际名称;文件成功打开。

根据this page,它以先到先得为基础运作。将值更改为attachment只能解决问题。

PS:我不确定这是否是最佳做法,但问题已得到解决。