我有一个UpdateProgress控件来激活按钮控件的回发. button_click事件正在执行Response.Redirect以显示CSV报告.报告出现,UpdateProgress栏正在按钮上旋转页面.但是,一旦用户关闭报表并将控件返回到页
如何使用UpdateProgress栏完成并消失?
This link对我有帮助.简而言之,用这样的东西替换Response.Redirect.
ScriptManager.RegisterClientScriptBlock( Me, Me.GetType(), "Download", "window.location='CSV_report.aspx';", True)