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?
|
4
|
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 use:
Not sure this will work in MVC but it's worth a shot :) |
||||
|
|
|
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: Request.IsAuthenticated tells you if the user is authenticated. Page.User.Identity gives you the identity of the logged-in user. |
|||
|
|
|
|
I found that 'User' works, ie. User.Identity.Name or User.IsInRole("Administrator")... Hope this helps although a bit late. |
||
|