javascript thread: Is it possible to turn of caching in Netscape using JavaScript?
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?