expire « Button « JSP-Servlet Q&A





6. Page not getting Expired after click of back button    coderanch.com

Hi, I'm using the cache-control method to use page expiration utility in my JSP. Its working fine with IE. But, I'm not able to achieve this with Mozilla Firefox. I'm setting all the cache-control related attributes to achieve this in my JSP - Also, I've used following piece of code as well: function noBack(){window.history.forward()} noBack(); window.onload=noBack; window.onpageshow=function(evt){if(evt.persisted)noBack()} window.onunload=function(){void(0)} But, still, page ...