G Guest Sep 12, 2005 #1 How do I get a web page to auto refresh when it is opened? I do not want it to refresh every "X" seconds, just on the page open.
How do I get a web page to auto refresh when it is opened? I do not want it to refresh every "X" seconds, just on the page open.
A Andrew Murray Sep 12, 2005 #2 <meta http-equiv="refresh" value="5; url="yourpage.html"> The above will refresh to a new page after a few seconds, a value you can set. It doesn't keep refreshing it, just "transitions" to a new page after x seconds.
<meta http-equiv="refresh" value="5; url="yourpage.html"> The above will refresh to a new page after a few seconds, a value you can set. It doesn't keep refreshing it, just "transitions" to a new page after x seconds.
R Ronx Sep 13, 2005 #3 Always link to the page with a querystring in the URL. Example: http://www.example.com? The "?" at the end will normally ensure the page will be fetched from the server, not from a cache.
Always link to the page with a querystring in the URL. Example: http://www.example.com? The "?" at the end will normally ensure the page will be fetched from the server, not from a cache.