我正在尝试使用asp.net下载多个文件。我有一个名为DownloadFileButton的Button和一个名为FilePath的ArrayList(它包含所有文件路径)。 因此,当我单击下载按钮时,仅下载1个文件(FilePath列表中的第一个文件)。因为Response.End()导致脚本停止处理。当我注释掉Response.End()时,我在Response.ClearHeaders()处得到一个异常。
如何克服这个?
我的代码:
protected void DownloadFileButton_Click(object sender, EventArgs e)
{
for (int i = 0; i < FilePath.Count; i++)
{
string path = FilePath[i];
FileInfo file = new FileInfo(path);
if(file.Exists)
{
Response.Clear();
Response.ClearHeaders();
Response.ClearContent();
Response.AddHeader("Content-Disposition", "attachment; filename=" + file.Name);
Response.AddHeader("Content-Length", file.Length.ToString());
Response.Flush();
Response.TransmitFile(file.FullName);
Response.End();
}
}
}
}
答案 0 :(得分:8)
如何克服这个?
一句话(或两个),你没有。
HTTP是请求/响应系统。任何回复都必须作为对请求的回复。鉴于此,您无法将多个响应发送到单个请求。如果不出意外,就没有客户端会听取这些响应(因为它已经得到了它正在等待的响应)。
基本上你有两个选择:
一个请求=一个响应。
答案 1 :(得分:1)
你可以用asp.net函数创建两个或更多按钮来触发。 例如:
a href="javascript:myFunction1()">Call function /a> asp:Button ID="myButton1" runat="server" Text="Button1" OnClick="myButton1_Click" /> asp:Button ID="myButton2" runat="server" Text="Button2" OnClick="myButton2_Click" /> asp:Button ID="myButton3" runat="server" Text="Button2" OnClick="myButton3_Click" />
要下载您需要的多个文件&#34;新的响应&#34;,您可以使用带有jQuery的$ .ajax来执行此操作,例如:
function myFunction1() { $.ajax({ url: "myPage.aspx", context: document.body }).done(function () { $("#myButton1").trigger("click"); myFunction2().delay(500000); //delay is necessary }); } function myFunction2() { $.ajax({ url: "myPage.aspx", context: document.body }).done(function () { $("#myButton2").trigger("click"); myFunction3().delay(1000000); }); } function myFunction3() { $.ajax({ url: "myPage.aspx", context: document.body }).done(function () { $("#myButton3").trigger("click"); }); }