This ASP.NET tutorial explains how to refresh a page in ASP.NET.
To refresh or redirect ASP.NET page to another web page you should use the Refresh META tag:
<META HTTP-EQUIV=”Refresh” CONTENT=”5;url=http://yourURL” />
In this case the web page will be refreshed/redirected after 5 seconds.
