how do i make a page refresh each time the page opens?

O

oljej

I would like to know how to keep my visitors seeing the most recent version
of a page - instead of the cached version that they may be looking at if
there computer is set wrong
 
T

Trevor L.

This is just a thought from a recent dabbler in this subject

Try changing the <body> tag

<body onload = "location.href='http://www.example.com/default.htm?'">
where the address (before the ?) is that of the page itself.

The ? should cause the page to reload
 
R

Ronx

The page will go in a continual loop - reloading every time it loads.

If the page changes frequently, then every link to the page should be
of the form pagename.htm? The "?" will cause the browser to reload
from the server, and it defeats proxy server caches.
 
Top