"Pragma: No-cache" Tag May Not Prevent Page from Being Cached

ID: Q222064


The information in this article applies to:


SYMPTOMS

When you use the <HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"> metatag in the header section at the beginning of an HTML Web page, the Web page may still be cached in the Temporary Internet Files folder.


CAUSE

A page that Internet Explorer is browsing is not cached until half of the 64 KB buffer is filled. Usually, metatags are inserted in the header section of an HTML document, which appears at the beginning of the document. When the HTML code is parsed, it is read from top to bottom. When the <HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"> metatag is read, Internet Explorer looks for the existence of the page in cache at that exact moment. If it is there, it is removed.


RESOLUTION

To properly prevent the Web page from appearing in the cache, place another header section at the end of the HTML document. For example:

<HTML>

<HEAD>

<META HTTP-EQUIV="REFRESH" CONTENT="5">
<TITLE> Pragma No-cache </TITLE>
</HEAD>

<BODY>

This is an example of where to place the second header section<br>
so that the "Pragama, No-Cache" metatag will work as it is supposed to.<br>

</BODY>

<HEAD>

<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
</HEAD>

</HTML>

Additional query words:


Keywords          : kbprg msiew95 msient msiew98 
Version           : WINDOWS:3.02,4.0,4.01,4.01 Service Pack 1,5
Platform          : WINDOWS 
Issue type        : kbprb 

Last Reviewed: June 24, 1999