本文介绍了Zip文件下载后如何刷新页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用DotNetZip库创建Zip并将文件下载为Zip文件然后,我想在代码中重定向或刷新相同的PAge,我该怎么做(在相同的PostBack中)
ex:
I use DotNetZip Library To Create Zip and Download File as a Zip File then, I want To Redirect or Refresh Same PAge in Code behind, How Can i Do that(In Same PostBack)
ex:
zip.Save(Response.OutputStream);
Response.Redirect(url,false);
我想在下载文件后刷新页面,但如果我使用
I want to Refresh Page After Downloading file,but It doesnt refresh if i use
Response.Redirect()
推荐答案
这篇关于Zip文件下载后如何刷新页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!