Hai All, I am working on a JSP Project and i am facing severe problems of JSP caching , any change made to the JSP page is not reflected immediately even after refresh, as a result the J2EE server has to be restarted. Can any body tell me please how to control this caching problem programatically i.e. clearing the cache ..waiting for reply..... thanks in advance santosh
try this response.setHeader("Pragma","no-cache"); if(request.getProtocol().equals("HTTP/1.1") response.setHeader("Cache-Control",no-cache"); hope this helps sanj
santosh vashist
Greenhorn
Joined: May 14, 2001
Posts: 25
posted
0
Originally posted by sanj singh: try this response.setHeader("Pragma","no-cache"); if(request.getProtocol().equals("HTTP/1.1") response.setHeader("Cache-Control",no-cache"); hope this helps sanj
Hello Sanj thank you for your early reply , i implemented the same and its working fine but one more problem is its not working in Netscape Navigator. Yar can you please tell me what i should i do in netscape.Hoping for early reply...