Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript thread: Is it possible to turn of caching in Netscape using JavaScript?


Message #1 by tkern11170217@y... on Tue, 21 Aug 2001 16:31:42
Try adding these tags to the <head> section of your pages.
<meta http-equiv="Expires" CONTENT="0">
<meta http-equiv="Cache-Control" CONTENT="no-cache">
<meta http-equiv="Pragma" CONTENT="no-cache">

Apparently not as good as using server-side code to add HTTP headers - but 
it may do the job for you.

> I need to find a way to stop Netscape from Caching during a session.  Is 
> this possible without changing the browser settings?

  Return to Index