PDA

View Full Version : document.getElementById cache trouble


Crash1hd
05-15-2003, 07:25 AM
Ok I have figured out why IE was still caching the page even when I added

<% response.expires = -15000 %>
<%Response.CacheControl = "no-cache"%>
<% Response.Expiresabsolute = Now() - 1 %>
<% Response.AddHeader "pragma","no-cache" %>
<% Response.AddHeader "cache-control","private" %>

I had a include file after them when I put the include file before them it works great also works great in netscape 4.7 yet for some reason the page still caches when I use a browser that uses getElementById for example Opera Mozzilla Netscape 7 ext...

and I cant figure out why????

I have even tried adding the meta tag for no cache
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-store">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">

nothing works???