Stop Asp Page Caching
Put this near the top of your script.
<%
Response.Expires = 0
Response.Expiresabsolute = Now() - 1
Response.AddHeader “pragma”,”no-cache”
Response.AddHeader “cache-control”,”private”
Response.CacheControl = “no-cache”
%>
Or if thats too long winded then
<%
Response.Expires = -1000
%>
If you enjoyed this post, please consider to leave a comment or subscribe to the feed and get future articles delivered to your feed reader.










Comments
No comments yet.
Leave a comment