Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
.Asp not refreshing
Message
 
 
To
03/11/2006 13:37:03
Jerry Tovar
Dana Corporation Dana It
Maumee, Ohio, United States
General information
Forum:
Internet
Category:
Active Server Page
Miscellaneous
Thread ID:
01166983
Message ID:
01167039
Views:
12
Try putting this in your ASP code:
  Response.Expires = 0
  Response.Expiresabsolute = Now()-1
  Response.AddHeader "pragma","no-cache"
  Response.AddHeader "cache-control","private"
  Response.CacheControl = "no-cache"
And put this into your section:
<META HTTP-EQUIV="Expires" CONTENT="0">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="cache-control" CONTENT="no-cache, no-store, must-revalidate">
That should pretty much cover things and redundantly so.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform