1) Have you look at Hans Bergsten site http://www.thejspbook.com/?
2) Is there something in Microsoft IE Preferences Dialog that overrides caching?
Have you checked the preferences dialog? It would be typically MICROSOFT
bullshit to not follow the standard.
--
Peter Pilgrim

"Putting PLEASE HELP ME! URGENT HELP! in the E-Mail Subject: Line,
will probably lead to the opposite intention."             << The  Windows Trash Can >>



---------------------------------------- Message History 
----------------------------------------


From: Celeste Haseltine <[EMAIL PROTECTED]>@java.sun.com> on 17/05/2001 14:49 
EST

Please respond to A mailing list about Java Server Pages specification and             
 reference <[EMAIL PROTECTED]>

DELEGATED - Sent by:     A mailing list about Java Server Pages specification and      
        [EMAIL PROTECTED]>


To:   [EMAIL PROTECTED]
cc:
Subject:  How to prevent IE from cacheing a JSP page

--<CUT>--

<head>
<META HTTP-EQUIV="expires" CONTENT="0">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
</head>

which had no effect at all on IE.  I have since discovered that the current
version of IE ignores MetaTags.  So I tried to use the response.setHeader
method in the jsp's as follows:

<head>
<% response.setHeader("expires","0");
   response.setIntHeader("expires",0);
   response.setHeader("Pragma","no-cache");
%>
</head>

--<CUT>--



--

This e-mail may contain confidential and/or privileged information. If you are not the 
intended recipient (or have received this e-mail in error) please notify the sender 
immediately and destroy this e-mail. Any unauthorised copying, disclosure or 
distribution of the material in this e-mail is strictly forbidden.

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to