How do I prevent caching of my web page?
To request that your web page not be cached, you must put a No-Cache directive in the <HEAD> section of the web page.
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"> is the HTTP/1.1 compliant method of requesting that a web page not be cached.
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"> was the HTTP/1.0 compliant method of requesting that a web page not be cached.
Bookmark How do I prevent caching of my web page?


