I am using Netbeans 6.9 and Glassfish 3.1 to create my web application. Now, I have session attribute checking on each jsp page. However, in the web browser it is not working properly. Example, suppose I have login.jsp -> bank-data.jsp -> logout.jsp. Now, I want, after logout, user should not be able to check bank-data.That's why, in bank-data.jsp, I put session attributes checking. However, in web browser I after logout, I can easily check bank-data, by going back. Now, after refreshing bank-data.jsp page, I found right output i.e. "user is not logged in". Can any body help me how to achive this without refreshing web browser ?
In short, how to delete all info about session from web browser and make each .jsp page to execute every time?