Hi
I'm trying to prevent caching for an HTML page using
But it still appears in Temporary Internet Files, the expiary date has passed but if I double click the file it opens as normal. Is it possible to prevent the page from appearing in the Temporary Files, I'm currently testing the application using localhost.
I'm trying to prevent caching for an HTML page using
Code:
<html><head><title> Load it</title>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
</head>
But it still appears in Temporary Internet Files, the expiary date has passed but if I double click the file it opens as normal. Is it possible to prevent the page from appearing in the Temporary Files, I'm currently testing the application using localhost.