may be the browser is loading the page from browser cache, so to avoid that, you may have to try to set these response headers:
response.setHeader("Cache-Control","no-cache");
response.setHeader("Pragma","no-cache");
response.setDateHeader ("Expires", 0);
OR some mechanism listed here, that suits your needs: http://www.google.co.in/search?q=browser+no+cache&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a
Cheers,
Shravan Kumar. M
--------------------------------How to Prevent backtracking after session().terminate
Mon Dec 14 17:52:44 2009
From:
"Sreenivasulu.Arveti" <email@hidden>
To:
"" <email@hidden>
Hi All,
I am working with WOLips. In my application, when I clicked on Logout button, I called session().terminate().
It works fine in the Internet Explorer. When I click on back button it goes to login page. But in Mozilla
browser
When I did the same thing it is not working. i.e., after clicking on logout button also when I click on back button
in the Mozilla web browser, application is working fine without going to login page.
Please get rid of this issue.
Thanks in advance,
Sreenivasulu Arveti.