我根据用户输入从服务器动态生成文件。我需要提供一个下载按钮,在单击时将文件下载到用户的文件系统。
此外,用户可能会点击两次相同的按钮,文件应该再次下载。
动态生成文件排除了HttpResponse.TransmitFile()选项,该选项支持多个下载。
我遇到的几乎所有其他选项都需要调用Response.End(),这会阻止第二次下载。
如何满足“多重下载”要求?
阅读虚拟路径提供程序,这可能使我能够使用TransmitFile(),但这对于这样一个简单的要求来说似乎有些过分。
答案 0 :(得分:1)
您可以尝试以下任一方法:
答案 1 :(得分:0)
从这里得到答案:
基本上,它使用客户端脚本在下载后重新加载页面:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<script type="text/javascript" language="javascript">
var isReload = false;
function DownloadFiles()
{
if(isReload == true)
{
isReload = false;
window.location.reload();
}
else
{
isReload = true;
}
window.setTimeout("DownloadFiles()", 2000);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label runat="server" ID="lblMsg"></asp:Label>
<asp:Button ID="Button1" runat="server" Text="Download" OnClientClick="DownloadFiles();" OnClick="Button1_Click"/>
</div>
</form>
</body>
</html>