vote up 5 vote down star
4

In forms model, I used to get current logged in user by

Page.CurrentUser

How do I get current user inside a controller class in ASP.NET MVC?

flag

73% accept rate

5 Answers

vote up 7 vote down check

If you need to get the user from within the controller, use the User property of Controller. If you need it from the view, I would populate what you specifically need in the ViewData, or you could just call User as I think it's a property of ViewPage.

link|flag
"or you could just call User as I think it's a property of ViewPage" - So do you mean use Page.user when you're in the view? – mawaldne Nov 28 at 20:14
vote up 0 vote down

I use:

Membership.GetUser().UserName

Not sure this will work in MVC but it's worth a shot :)

link|flag
Where does this Membership class come from? IntelliSense does not recognize it by default. – Serhat Özgel Nov 4 '08 at 21:31
The System.Web.Security namespace. I'm not positive this is useful in MVC but I use it with the login controls for Web Forms. – Sean Nov 4 '08 at 21:57
vote up 4 vote down

try HttpContext.Current.User

UPDATE (reading comment):

Public Shared Property Current() As System.Web.HttpContext
Member of System.Web.HttpContext

Summary:
Gets or sets the System.Web.HttpContext object for the current HTTP request.

Return Values:
The System.Web.HttpContext for the current HTTP request

.

link|flag
Apparently HttpContext does not have a property named "Current". – Serhat Özgel Nov 4 '08 at 21:33
I believe you two are talking about two different things. System.Web.HttpContext and the static property: System.Web.Mvc.Controller.HttpContext (Which does not have a "Current" property. – Jeff Sheldon Nov 4 '08 at 23:31
vote up 2 vote down

I realize this is really old, but I'm just getting started w/ MVC.Net, so I thought I'd stick my two cents in:

Request.IsAuthenticated tells you if the user is authenticated. Page.User.Identity gives you the identity of the logged-in user.

link|flag
vote up 3 vote down

I found that 'User' works, ie. User.Identity.Name or User.IsInRole("Administrator")... Hope this helps although a bit late.

link|flag
Thanks, this actually did help! – thebrokencube Jul 28 at 17:30

Your Answer

Get an OpenID
or

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