How to Auto Refresh / Re Load Page

Sometimes we need a page which shows real time date e.g. Stock exchange, cricket match, etc. To add auto refresh / re load you need to add the following meta tag in your markup's head section.
<meta http-equiv="refresh" content="600">

If you want to add this from code behing, then you can add it like this:-
protected void Page_Load(object sender, EventArgs e)
{
HtmlMeta hmRefresh = new HtmlMeta();
hmRefresh.HttpEquiv = "Refresh";
hmRefresh.Content = "10";//Time in seconds
Page.Header.Controls.Add(hmRefresh);
}

Comments (2)

Loading... Logging you in...
  • Logged in as
I want to reload another aspx page in window.load so is it possible
1 reply · active 636 weeks ago
You can use javascript setTimeout function like this

<script type='text/javascript>
function myfun()
{
window.location='http://localhost/testsite/page.aspx';
}
setTimeout(myfun,10000);//10 seconds
</script>

Post a new comment

Comments by