how can i force a refresh on webpages???

liunx

Guest
how can i force a full refresh of my web pages?<br />
<br />
I keep asking friends if they like the changes to my site hazabaza (<!-- m --><a class="postlink" href="http://www.hazabaza.co.uk">http://www.hazabaza.co.uk</a><!-- m -->) and they look at me blankly because it hasnt changed - if they do a control+refresh they then say "oh yeah its changed"<br />
<br />
what do you suggest I do???<br />
<br />
cheers<br />
<br />
Bob<!--content-->This link might help:<br />
<!-- m --><a class="postlink" href="http://htmlgoodies.earthweb.com/beyond/nocache.html">http://htmlgoodies.earthweb.com/beyond/nocache.html</a><!-- m --><!--content-->Just set up some HTTP headers to keep the page from caching itself.<br />
<br />
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate"><br />
<meta http-equiv="Pragma" content="no-cache"><!--content-->There's no rule that says that browsers have to pay attention to your 'no-cache' instructions so you might want to add the following: <br />
<br />
<meta http-equiv="Date" content="-1"><br />
<meta http-equiv="Expires" content="-1"><br />
<br />
Note: HTTP headers do not support relative dates, but any illegal date is taken to have occured sometime in the past.<!--content-->
 
Back
Top