README.md
December 5, 2022 ยท View on GitHub
Description
This code allows you to force a page to reload from the server, rather than the user's browser cache. You can use this to make sure the content the user sees is always current.
http://www.truegeeks.com/asp/mam/osdoc/osframe.asp
More Info
| Submitted On | |
| By | Found on the World Wide Web |
| Level | Beginner |
| User Rating | 5.0 (10 globes from 2 users) |
| Compatibility | ASP (Active Server Pages) |
| Category | Server Side |
| World | ASP / VbScript |
| Archive File |
Source Code
<%Response.Expires = -1
Response.AddHeader "Pragma", "no-cache"
Response.AddHeader "cache-control", "no-store"
%>