> <head>
> <meta http-equiv="pragma" content="no-cache">
> <meta http-equiv="cache-control" content="no-store">    <!-- HTTP 1.1 -->
> <% response.setDateHeader ("Expires", 0); %>            <!-- disable caching
> at proxy server -->
> </head>
>
> You need to put it at the top of the page, as you would expect, and ALSO at
> the the bottom of the page, to get around a bug in some browsers e.g. MS
> Internet Explorer.

this is client-side stuff, so even if that works it's probably the better
solution
to accomplish it at the server-side like:

res.setHeader("Pragma", "no-cache");
res.setDateHeader("Expires", 0);
res.setHeader("Cache-Control", "no-cache");

for me this works fine.

basti

Reply via email to