I want to log out from my the account in my project . So i wrote an jsp code as below
<%@page import="java.util.*" %>
<%session.invalidate();%> You have logged out. Please <a href="adminlogin.html"><b>Login</b></a>
but whenever i click on browser back button it's going to the main admin page but it should not go back to the previous page . I should disable the browser from going to the admin main page . It should only happen through log in. please help me***