Hi,
each time a user loads a web page into their browser, I want the page to be the most up to date version on the server, regardless of what is in the user's cache. What's the best way to do this?
So far I've found that
Code:
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
doesn't work in all browsers
but that
Code:
<meta http-equiv="expires" content="0">
does. Is the latter the way to go?
|