Re: no-cache where to set?

2002-08-01 Thread peter lin
In your jsp page, add the following code at the top. % response.setHeader(Cache-Control,no-cache); response.setHeader(Pragma,no-cache); response.setDateHeader (Expires, 0); % for more info on no-cache, jguru has some useful stuff http://www.jguru.com/faq/view.jsp?EID=377 peter slickdev

RE: no-cache where to set?

2002-07-31 Thread Durham David Cntr 805CSS/SCBE
this should work with all http1.1 compatible browsers: response.setHeader(Cache-Control, no-cache); Dave -Original Message- From: slickdev [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 31, 2002 4:27 PM To: Tomcat Users List Subject: no-cache where to set? pardon my