0

在向用户显示页面后,我有此代码开始下载:

 protected void Page_Load(object sender, EventArgs e)
    {
        Response.Redirect("http://myserver.com/myfile.zip", false);   
    }        

但是重定向是在页面加载之前完成的,并且页面永远不会加载。

如何开始下载并完成向客户端显示页面?

我不能使用 Transmit.File,因为该文件位于不同的服务器上。

4

2 回答 2

2
protected void Page_Load(object sender, EventArgs e)
{
  Page.ClientScript.RegisterStartupScript(this.Page.GetType(), "java", "setTimeout(Redirect, 9000);", true);
}

在aspx页面中制作一个javascript函数

<script language="javascript" type="text/javascript">
    function Redirect() {
        window.location = 'http://myserver.com/myfile.zip';
    }
</script>
于 2013-04-10T12:23:05.333 回答
1

我使用以下代码弹出一个对话框来下载 CSV 文件。也许这样的事情对你有用?

HttpContext.Current.Response.Clear();
HttpContext.Current.Response.ClearHeaders();
HttpContext.Current.Response.ClearContent();
HttpContext.Current.Response.AddHeader("content-disposition", "filename=export.csv");
HttpContext.Current.Response.ContentType = "text/csv";
HttpContext.Current.Response.Write(sb.ToString()); // In my case, the StringBuilder object was the file to be written.  I don't know exactly what you'd for a non dynamic file.
HttpContext.Current.Response.End();
于 2013-04-10T13:25:06.160 回答