ASP.NET – After using Response.Redirect, Ajax UpdateProgress will not stop spiing

I have an UpdateProgress control to activate the postback of the button control. The button_click event is executing Response.Redirect to display the CSV report. The report appears and the UpdateProgress bar is rotating the page on the button. But once The user closes the report and returns the control to the page, the UpdateProgress image is still rotating.

How to use the UpdateProgress bar to complete and disappear?

This link is helpful to me.

In short Instead, replace Response.Redirect with something like this.

ScriptManager.RegisterClientScriptBlock(
Me, Me.GetType(), "Download", "window.location= 'CSV_report.aspx';", True)

I have an UpdateProgress control to activate the postback of the button control. The button_click event is executing Response.Redirect to display the CSV report. The report appears and the UpdateProgress bar is rotating the page on the button. However, once the user closes the report and returns the control to the page, the UpdateProgress image is still rotating.

How to use the UpdateProgress bar to complete and disappear?

This link is helpful to me.

In short, replace Response.Redirect with something like this.< /p>

ScriptManager.RegisterClientScriptBlock(
Me, Me.GetType(), "Download", "window.location='CSV_report.aspx';", True)

WordPress database error: [Table 'yf99682.wp_s6mz6tyggq_comments' doesn't exist]
SELECT SQL_CALC_FOUND_ROWS wp_s6mz6tyggq_comments.comment_ID FROM wp_s6mz6tyggq_comments WHERE ( comment_approved = '1' ) AND comment_post_ID = 2076 ORDER BY wp_s6mz6tyggq_comments.comment_date_gmt ASC, wp_s6mz6tyggq_comments.comment_ID ASC

Leave a Comment

Your email address will not be published.