vote up 0 vote down star

Using Forms Authentication, I am storing a cookie for each user if they mark Remember Me during login, using the following piece of code in the Login1_LoggedIn event.

if (rememberMe.Checked) FormsAuthentication.SetAuthCookie(Login1.UserName, true);

When the user arrives on my page with a cookie, I need to get his/her user name so I can check their roles. Does the Forms Authentication cookie store this information, and how can I retrieve it?

flag

77% accept rate

2 Answers

vote up 1 vote down check

The string you parse to SetAuthCookie (Login1.UserName in your case) will be stored in the IPrincipal when the user accesses a page. You can access it using:

Page.User.Identity.Name
link|flag
The problem with this is that when I check for the cookie, the user is not logged in; therefore his identity is not established, and consequently I cannot use this code. – Matthew Jones Oct 1 at 15:41
Haha. Ignore my last comment. Silly me for jumping to conclusions. +1 and Accepted for DaveG!. – Matthew Jones Oct 1 at 15:52
It's also possible to store user roles in the authentication cookie itself and use Page.User.IsInRole("yourrole"); – DaveG Oct 1 at 16:05
vote up 1 vote down

Try

Page.User.Identity.Name

or

HttpContext.Current.User.Identity.Name
link|flag
+1 cause this is correct, but DaveG beat ya so he gets accepted. Still, thanks! – Matthew Jones Oct 1 at 15:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.