Click here to Skip to main content
15,867,488 members
Please Sign up or sign in to vote.
1.44/5 (3 votes)
See more:
Hi,

How To Autorefresh A Page Every Two Minutes?
Posted
Comments
Richard C Bishop 30-Oct-13 11:29am    
Use a timer.

Have a look into

How To Autorefresh A Page Every Two Minutes?

PS: Google is your friend. Never forget.
 
Share this answer
 
Auto matically refresh using html meta tag

<meta http-equiv="refresh" content="120" /> second is unit

java script timer
JavaScript
<script>setTimeout('window.location.href = window.location.href', 12000);</script> //millisecond is unit
 
Share this answer
 
v2
Comments
[no name] 30-Oct-13 12:08pm    
very good

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900