I am using a session variable to pass values from one form to another as follows:
session.setAttribute(“username”)
session.getAttribute(“Username”)
However, when the user logs out, I want the session to end. If they press "Back" on their browser after logging out, they should not be placed back in the previous file as though they are logged in.
Can anyone please suggest an answer? :confused:
