View Single Post
  #6 (permalink)  
Old 06-18-03, 09:15 AM
Stealth Stealth is offline
1337 pr0gr4mm3r
 
Join Date: Jun 2003
Location: Glasgow, Scotland
Posts: 188
Thanks: 0
Thanked 0 Times in 0 Posts
Try adding this to the top of your page
Code:
Response.expiresabsolute=now() -1
or you could try

Code:
<meta http-equiv="PRAGMA" value="NO-CACHE">
<meta http-equiv="Expires" content="Mon, 01 Jan 1990 12:00:00 GMT">
or finally, one i found on the net but havnt tried is

Code:
Response.CacheControl = "no-store"
Response.AddHeader "Pragma", "no-cache" 
Response.Expires = -1
im sure Response.CacheControl = "no-cache" prevents cacheing on server but i may be wrong
Reply With Quote