On Tue, 13 Mar 2001 17:13:14 +0100, Zsolt Koppany wrote:

>Hi,
>
>with the code below I can get netscape not to cache a jsp page but it
>does not work with Internet-Explorer.
>Does anybody know why?
>
>
>response.setHeader("Cache-Control", "no-cache");
>response.setHeader("Pragma", "no-cache");\
>

Hitting the same problem we used at
http://www.mavicanet.com
and it works both on NS and IE!

                response.setHeader("Pragma","no-cache");
                response.setHeader("Cache-Control","no-cache");
                response.setHeader("Expires","Thu, 01 Dec 1994 16:00:00 GMT");



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to