文件下载后我必须重定向到同一页面!
当我说 response.redirect .. 它说 HTTP 标头发送后无法重定向
有人可以帮我弄这个吗?
我正在使用 ionic.zip 压缩文件并下载它。
PS:让我知道如果我必须让我的问题更清楚,我可以解释:(
Response.Clear();
Response.BufferOutput = false;
string filename = "results" + ".zip";
Response.ContentType = "application/zip";
Response.AddHeader("content-disposition", "filename=" + filename);
using (ZipFile zip = new ZipFile())
{
zip.AddDirectory(pathhdf.Value);
zip.Save(Response.OutputStream);
}
Response.Close();
Response.Redirect("Default.aspx"); /// here come my error
提前致谢!