In MVC2 I have used Page.User.Identity.Name using the <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
How can I use the same in MVC3?
|
In MVC2 I have used How can I use the same in MVC3? |
|||
|
|
|
You can always do something like:
but don't. Normally a view shouldn't try to fetch such information. It is there to display whatever information is passed by the controller. It should be strongly typed to a model class which is passed by a controller action. So in the controller action rendering this view:
Now inside the view feel free to use this information:
|
|||||||||||||||
|
|
I had the same problem, I try with this tutorial: In short, in your view, put this code:
Just make shure that the project is set to authenticate with windows. |
||||
|
|