It's better to put these things in the ASP, as headers from the server take precendence over META tags in the HTML. I use these commands at the top of every page:
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "no-cache"
Response.Expires = -1
If you're stuck with putting it in html, use this:
<meta http-equiv="Expires" CONTENT="0">
<meta http-equiv="Cache-Control" CONTENT="no-cache">
<meta http-equiv="Pragma" CONTENT="no-cache">
hth
Phil
|