在表单模型中,我曾经通过以下方式获取当前登录用户:
Page.CurrentUser
如何在ASP中获得控制器类中的当前用户。净MVC吗?
在表单模型中,我曾经通过以下方式获取当前登录用户:
Page.CurrentUser
如何在ASP中获得控制器类中的当前用户。净MVC吗?
当前回答
在Asp.net Mvc Identity 2中,你可以通过以下方式获取当前用户名:
var username = System.Web.HttpContext.Current.User.Identity.Name;
其他回答
我发现User工作,即User. identity . name或User. isinrole(“管理员”)。
用户名:System.Web.HttpContext.Current.User.Identity.Name
用户名:
User.Identity.Name
但如果你只需要获取ID,你可以使用:
using Microsoft.AspNet.Identity;
所以,你可以直接获得用户ID:
User.Identity.GetUserId();
这个页面可能就是你要找的: 在MVC3中使用Page.User.Identity.Name
你只需要User.Identity.Name。
var ticket = FormsAuthentication.Decrypt(
HttpContext.Current.Request.Cookies[FormsAuthentication.FormsCookieName].Value);
if (ticket.Expired)
{
throw new InvalidOperationException("Ticket expired.");
}
IPrincipal user = (System.Security.Principal.IPrincipal) new RolePrincipal(new FormsIdentity(ticket));