README.md

December 5, 2022 ยท View on GitHub

Bust the cache!

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
ByFound on the World Wide Web
LevelBeginner
User Rating5.0 (10 globes from 2 users)
CompatibilityASP (Active Server Pages)
CategoryServer Side
WorldASP / VbScript
Archive File

Source Code

<%Response.Expires = -1
Response.AddHeader "Pragma", "no-cache"
Response.AddHeader "cache-control", "no-store"
%>