in my recent asp.net (c#) website project a user needs to login to view a secure.aspx page. after logging in when a user clicks logout link from secure.aspx page, the user logs out, and redirected to login page..
but after that if the user presses the back button of the browser, the browser shows the secured pages,but in this state if user clicks any button or anything else that post backs the page, the login page is being displayed. is everything ok with logout control?
in my recent asp.net (c#) website project a user needs to login to view
Share
Everything’s okay with the logout control; you can’t help the fact that the browser keeps history. Don’t worry, the page is only a local cached copy for history; there is no problem in the permissions and the user is not actually logged in, though s/he may appear to be.