Hi Everyone,
I'm having a problem having IE not cache
jsp pages. I'm using this 4 lines at the begining of my jsp but IE still caches the page.
response.setHeader("Cache-Control","no-cache"); //http 1.0
response.setHeader("Cache-Control", "no-cache, no-store, must-revalidate");//http 1.1
response.setHeader("Pragma","no-cache");
response.setHeader("Expires", "01 Apr 1995 01:10:10 GMT");
I really appreciate your sugestions.
Thanks
Zeb