Click to See Complete Forum and Search --> : how can i refresh my page automatically


sa_keles
March 29th, 2006, 02:11 PM
i want my page to refresh automatically on 5 minutes . how can i do this?
thanks

sa_keles
March 29th, 2006, 04:29 PM
<meta http-equiv = "refresh" content=300 >
or

function forPage()
{
location.href= "default.aspx"
}
setTimeout("forPage()", 2000);

jayender.vs
March 29th, 2006, 10:57 PM
i want my page to refresh automatically on 5 minutes . how can i do this?
thanksYou can have the client refresh on a regular basis with a meta tag like this: <META HTTP-EQUIV="refresh" CONTENT="5"> That will cause the browser to refresh every 5 seconds.