I had a similar problem earlier regarding cache on MSIE. It was only applicable when using HTTPS. Here's the ms kb article http://support.microsoft.com/default.aspx?scid=kb;en-us;323308

In effect, you tell MSIE not to keep a copy around, it if you're using SSL, it doesn't. For stuff that I didn't want to be cached, I worked around it by setting the expiration time to the near future. This is definitely not foolproof, though.

csl

temp temp wrote:




 I am  disabling the browsers chache using jsp
setHeader method ,  exact code is  below.


  response.setHeader( "Expires", "Sat, 6 May 1995
12:00:00 GMT" );
// set standard HTTP/1.1 no-cache headers
  response.setHeader( "Cache-Control", "no-store,
no-cache, must-revalidate" );

  // set IE extended HTTP/1.1 no-cache headers
  response.addHeader( "Cache-Control", "post-check=0,
pre-check=0" );

  // set standard HTTP/1.0 no-cache header
  response.setHeader( "Pragma", "no-cache" );

--
Chad S. Lauritsen                      The Sherwin-Williams Company
Paint Stores Group MIS                 101 West Prospect Ave
End User Computing Specialist          1125 Republic
Voice 216-566-1525 FAX 216-566-3536    Cleveland, OH 44115
PGP Public Key: http://planetlauritsen.com/chad/keys/work.txt


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

Reply via email to