I have a page that when you press 'log out' it will redirect to the login.aspx
page which has a Page_Load
method which calls FormsAuthentication.SignOut()
.
The master page displays the 'log out' link in the top right of the screen and it displays it on the condition that Page.User.Identity.IsAuthenticated
is true
. After stepping through the code however, this signout method doesn't automatically set IsAuthenticated
to false
which is quite annoying, any ideas?
In your login.aspx Page_Load method:
A person is only authenticated once per request. Once ASP.NET determines if they are authenticated or not, then it does not change for the remainder of that request.
For example, when someone logs in. When you set the forms auth cookie indicating that they are logged in, if you check to see if they are authenticated on that same request, it will return
false
, but on the next request, it will returntrue
. The same is happening when you log someone out. They are still authenticated for the duration of that request, but on the next one, they will no longer be authenticated. So if a user clicks a link to log out, you should log them out then issue a redirect to the login page.Page.User.Identity.IsAuthenticated
gets its value fromPage.User
(obviously) which is unfortunately read-only and is not updated when you callFormsAuthentication.SignOut()
.Luckily
Page.User
pulls its value fromContext.User
which can be modified:This is useful when you sign out the current user and wish to respond with the actual page without doing a redirect. You can check
IsAuthenticated
where you need it within the same page request.Why are you executing logout code in the login.aspx?
Put this code in e.g. logout.aspx:
IsAuthenticated will be false in login.aspx. Login and logout code are now separated: Single Responsibility.
I remember having a similar problem and I think I resolved it by expiring the forms authentication cookie at logout time:
Update
This works for me