How to avoid caching the page !!!!!

1999-09-16 Thread Mohan K Reddy
Hello: One of the major or rather irritating problems that I am encountering these days is caching of the page. Even if the JSP is changed the server still loads the same old page.Inspite of doing all the jaaz to avoid caching the problem still persists.Any suggestions!!! Thanks Mohan

Re: How to avoid caching the page !!!!!

1999-09-16 Thread Srikala Golla
Use the meta tag . srikala. -Original Message- From: Mohan K Reddy [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 16, 1999 2:17 PM To: [EMAIL PROTECTED] Subject: How to avoid caching the page ! Hello: One of the major or rather irritating problems that I am encountering

Re: How to avoid caching the page !!!!!

1999-09-16 Thread Srikala Golla
Please use the meta tag "". srikala. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on JSP can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/js

Re: How to avoid caching the page !!!!!

1999-09-16 Thread Joshua Prunier - Sun Microsystems
There's always JavaScript. When the jsp page loads try doing this: function doFunc() { location.reload(true); } Then add this to your body tag: It's messy. There may be other ways but this one works. The "rel

Re: How to avoid caching the page !!!!!

1999-09-16 Thread Nicholas Barrington
riday, September 17, 1999 7:17 AM To: [EMAIL PROTECTED] Subject: How to avoid caching the page ! Hello: One of the major or rather irritating problems that I am encountering these days is caching of the page. Even if the JSP is changed the server still loads the same old page.Inspite of doin

Re: How to avoid caching the page !!!!!

1999-09-17 Thread Eric M. Andersen
>Try using the META tag : > > > >Where you put the expiry time (either explicit date/time or >seconds-from-now) in the content field. > >You could also try > > > >but I've found that to be less reliable on some browsers. Hi all, This is a known problem with IE, check out these articles: http://s

Re: How to avoid caching the page !!!!!

1999-09-17 Thread Mark Munzer
According to IBM, the way to prevent caching for JSPs in IE 5.0 is to use the following scriptlet in your JSP. It works better than the meta tags in HTML. <% response.setHeader("Pragma","No-cache"); response.setDateHeader("Expires",0); response.setHeader("Cache-Control", "no-cache"); %> Hope thi

Re: How to avoid caching the page !!!!!

1999-09-17 Thread Mohan K Reddy
ing these in an enterprise. Any Suggestions !!! I Thank all those who have responded earlier. regards Mohan -Original Message- From: Li Xuejun(RDC) [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 16, 1999 7:59 PM To: Mohan K Reddy Subject: Re: How to avoid caching the page ! M