<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);
}
nrapendra · 636 weeks ago
Zeeshan Umar · 636 weeks ago
<script type='text/javascript>
function myfun()
{
window.location='http://localhost/testsite/page.aspx';
}
setTimeout(myfun,10000);//10 seconds
</script>