Hi, I have succesfully created session in a JSP page. I put name and pasword in a form in index.jsp and then send it to login.jsp where I start the session. In login.jsp I am also using an EJB in which I am connecting to a database and finding out if an user is in that database.If he is there , I start the session. In next page I am trying to logout by using : session.removeValue().It removes the session value but when I click "back" in the browser,the login.jsp page behaves like the session would be still created.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <% if(session.getValue("meno")!=null) { session.removeValue("meno");
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <% if(session.getValue("meno")!=null) { session.removeValue("meno");