I have been distroyed the session once user logged out, but when clicking on the back button i can see the previous pages.I tried session timeout and all but it doesn't work for me.How can i resolve this issue. Its asp.net MVC Web application
public ActionResult LoggedOut()
{
HttpContext.Session.Timeout = 1;
HttpContext.Session.Clear();
Session.Abandon();
Session.RemoveAll();
Session.Clear();
return View();
}