How can i force Netscape 7 to reload the page instead of load the page from webcache ?
When set cache options = never compare the page in the cache to the page on the network.
This setting prevents the page to reload.
I've tried the following :
<META HTTP-EQUIV="pragma" CONTENT="no-cache">
<%
response.expires = 0
response.expiresabsolute = Now() - 1
response.addHeader "pragma","no-cache"
response.addHeader "cache-control","private"
Response.CacheControl = "no-cache"
%>
Thanks !
Magnus
When set cache options = never compare the page in the cache to the page on the network.
This setting prevents the page to reload.
I've tried the following :
<META HTTP-EQUIV="pragma" CONTENT="no-cache">
<%
response.expires = 0
response.expiresabsolute = Now() - 1
response.addHeader "pragma","no-cache"
response.addHeader "cache-control","private"
Response.CacheControl = "no-cache"
%>
Thanks !
Magnus