I am storing username and password in session when user logins. After logout, when I press Back button of browser, it again goes to the home page of the user. I want that the session must expire so that after logout when user presses back button, he get's rediected to the login page.
I have already tried
Session.RemoveAll();
Session.Abandon();
Session.Remove("StoreUser");
StoreUser is the name of the session that contains username and password.