-
JSP Caching Problem (3 messages)
- Posted by: sivakumar bandi
- Posted on: February 09 2009 05:07 EST
Hi All, I am using the following parameter for removing the caching in JSP. But the caching is not happening in the IE.Its fetching the old files.It's not going to the server request when i click on my JSP.Is there any way to avoid this caching problem.Please help me.. Regards, CvaThreaded Messages (3)
- Re: JSP Caching Problem by J Dev on February 10 2009 01:43 EST
- Re: JSP Caching Problem by Marina Prikaschikova on February 10 2009 03:56 EST
- Re: JSP Caching Problem by sivakumar bandi on February 10 2009 05:47 EST
-
Re: JSP Caching Problem[ Go to top ]
- Posted by: J Dev
- Posted on: February 10 2009 01:43 EST
- in response to sivakumar bandi
Try using cache-control header response.setHeader("Cache-Control", "no-cache"); See Prevent caching of JSP/Servlet output -
Re: JSP Caching Problem[ Go to top ]
- Posted by: Marina Prikaschikova
- Posted on: February 10 2009 03:56 EST
- in response to sivakumar bandi
There are several cache on/off components for JSP -
Re: JSP Caching Problem[ Go to top ]
- Posted by: sivakumar bandi
- Posted on: February 10 2009 05:47 EST
- in response to Marina Prikaschikova
Thanks Dev. It got worked.... i just want to know the difference between the cache content headers and META tags.Both will perform the same operation(removing caching) but it is not happening properly in META tags.Is there any reason? Reagards, Cva