Thank you for being a valued part of the CNET community. As of December 1, 2020, the forums are in read-only format. In early 2021, CNET Forums will no longer be available. We are grateful for the participation and advice you have provided to one another over the years.

Thanks,

CNET Support

General discussion

Site update script?

Mar 21, 2005 9:04AM PST

I update my website often, but each time I update, no one could see the updated content. I later found out that my site was cached into site's visitor's Internet Explorer. Is there any script that is capable of solving this problem?

Discussion is locked

- Collapse -
meta tag
Mar 21, 2005 8:12PM PST

<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">

this is supposed to work. put this somewhere between your <head> and </head> tags

- Collapse -
..
Mar 21, 2005 8:22PM PST

it seems you have to use another line too to be sure. So your code would look like this

. . .
<head>
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
</head>
. . .