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?
|
In forms model, I used to get current logged in user by
How do I get current user inside a controller class in ASP.NET MVC? |
|||
|
|
|
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. |
|||
|
|
I found that |
|||||||
|
|
try UPDATE (reading comment):
. |
|||||||||
|
|
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:
|
||||
|
|
|
I use:
Not sure this will work in MVC but it's worth a shot :) |
|||||||||||
|
|
By the way, just bumped into this, if you are inside your Login page, in LoginUser_LoggedIn event for instance, Current.User.Identity.Name will return an empty value, so you have to use yourLoginControlName.UserName property.
|
|||
|
|
|
||||
|
|
|
This page could be what you looking for: You just need |
||||
|
|
|
I know this is an old post. But I thought I would at least mention that you have to enable NTLM Authentication for your project in order for this to work locally during development. |
|||
|
|
|
For what it's worth, in MVC3 you can just use User which returns the user for the current request. |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.