我在使用 MVC HttpContext.User.Identity 时遇到了一点问题,我得到了 system.security.principal.windowsIdentity,它给了我我的 Windows 用户的名字......我不想要那个,我想要获取(起初)null User.Identity,以便我可以使用 FormsAuthentication。如何防止 mvc 使用此 system.security.principal.windowsIdentity 来显示正确的 User.Identity?任何帮助,将不胜感激
public ActionResult Index()
{
var s = HttpContext.User.Identity.Name; //
return View();
}