How do I create an ASPX page that periodically refreshes itself?
Most browsers recognize the following META tag as a signal to automatically refresh the page every nn seconds: nn is number of seconds. Alternatively you can use Response.AppendHeader to add header “Refresh” with appropriate interval in seconds. The following page will be refreshed for every 10 seconds. response.