0

我在 IIS 上的 ASP.Net 中运行以下代码:

try
{
    Response.Clear();
    Response.ContentType = "application/zip";
    Response.AddHeader("content-disposition", "attachment;filename=MyBigFile.zip");
    Response.TransmitFile(Server.MapPath("~/Stuff/MyBigFile.zip"));
    Response.Flush();
}
catch (Exception ex)
{
    Logger.Error("File download failed", ex);
}

问题是用户在下载完成之前无法导航到我网站上的任何其他页面(我发现这个是因为看起来用户手动取消下载,因为它经常抛出异常The remote host closed the connection. The error code is 0x800703E3.

如何让下载在后台生成,并允许我的用户在下载时继续浏览网站?

4

1 回答 1

0

看起来我找到了问题 - 会话状态。

页面上的设置<%@ EnableSessionState="ReadOnly" %>似乎可以解决问题。

于 2013-09-13T07:04:18.263 回答