0
0
Here your page Default.aspx will be refreshed after 60 seconds, if you want to redirect to another page after a few seconds, replace the page 'Default.aspx' with the page you want to be redirected.
Posted on 11:01 AM by prajeesh and filed under
ASP.net
Some situations such as a freequently updating page you may need to refresh your page automatically, here is the code to achieve this.
Response.AppendHeader("Refresh", "60; URL=Default.aspx");
Here your page Default.aspx will be refreshed after 60 seconds, if you want to redirect to another page after a few seconds, replace the page 'Default.aspx' with the page you want to be redirected.