在表单模型中,我曾经通过以下方式获取当前登录用户:
Page.CurrentUser
如何在ASP中获得控制器类中的当前用户。净MVC吗?
在表单模型中,我曾经通过以下方式获取当前登录用户:
Page.CurrentUser
如何在ASP中获得控制器类中的当前用户。净MVC吗?
当前回答
我们可以使用下面的代码在ASP中获取当前登录的用户。Net MVC:
var user= System.Web.HttpContext.Current.User.Identity.GetUserName();
也
var userName = System.Security.Principal.WindowsIdentity.GetCurrent().Name; //will give 'Domain//UserName'
Environment.UserName - Will Display format : 'Username'
其他回答
用户名:System.Web.HttpContext.Current.User.Identity.Name
我知道这真的很旧,但我刚刚开始使用ASP。NET MVC,所以我想我要坚持我的两分:
请求。IsAuthenticated告诉您用户是否通过了身份验证。 identity为您提供登录用户的标识。
您可以在ASP中获取用户名。NET MVC4:
System.Web.HttpContext.Current.User.Identity.Name
我使用:
Membership.GetUser().UserName
我不确定这是否适用于ASP。NET MVC,但它值得一试:)
这个页面可能就是你要找的: 在MVC3中使用Page.User.Identity.Name
你只需要User.Identity.Name。