4

我正在尝试使用代码隐藏 C# 代码从我的 DownloadFile.aspx 页面输出文件。我执行以下操作:

protected void Page_Load(object sender, EventArgs e)
{
    string strFilePath = @"C:\Server\file";
    string strFileName = @"downloaded.txt";

    long uiFileSize = new FileInfo(strFilePath).Length;

    using (Stream file = File.OpenRead(strFilePath))
    {
        Response.ContentType = "application/octet-stream";

        Response.AddHeader("Content-Disposition", "attachment; filename=\"" + strFileName + "\"");
        Response.AddHeader("Content-Length", uiFileSize.ToString());

        Response.OutputStream.CopyTo(file);

        Response.End();
    }
}

这可行,但是当文件被下载并保存时,它的内容只是一个 HTML 页面。

我在这里做错了什么?

4

2 回答 2

7

您正在向后复制流。应该:

file.CopyTo(Response.OutputStream);
于 2013-08-08T20:56:46.560 回答
3

在发送文件之前清除响应,并改用 TransmitFile 方法。

    Response.Clear()
    Response.TransmitFile("FilePath.ext")
    Response.End()

http://msdn.microsoft.com/en-us/library/12s31dhy.aspx

于 2013-08-08T21:01:40.790 回答