Possible Duplicate:
Prevent user from going back to the previous secured page after logout
I need to secure a java application(mvc) by preventing a user to access the same after signout.
Objective:
1.Enduser should not be able to access the restricted page using browser back button after signout. 2.Enduser should not be able to access any restricted URL in browser history after signout
After googling i understood that it is not a good practice to disable the browser-back button.So How can I achieve this at the best in JSP ?
Thanks&Regards Ashish