Get username of logon user ASP.NET MVC

I want to get the username of the logon username and domain. My code for getting it, is in a controller:

User.Identity.GetUserId()

In my web.config is:

<system.web>
    <identity impersonate="false"/>
    <authentication mode="Windows" />
    <compilation debug="true" targetFramework="4.6.1" />
    <httpRuntime />
    <pages controlRenderingCompatibilityVersion="4.0" />
</system.web>

Currently, I only get a empty string. What I have to change to get the Windows username information?

Sidenote for others : While my research, I also got to the following:

Environment.UserDomainName +  @"" + Environment.UserName

In reference to this, it only delivers the identity in which the thread is running and not the windows information.

EDIT1: I'm currently testing my program in debugging mode.


try this

HttpContext.User.Identity.Name

also make sure you have authorization tag in your system.web in web.config as

<authorization>
  <allow users="?" />
</authorization>

and in IIS make sure that you will disable annonymous authentication and enable windows for the same app as

在这里输入图像描述


User.Identity.GetUserId() is an extension method from Microsoft.AspNet.Identity . Identity is incompatible with Windows Auth (you have to use one or the other), so I'm not sure what you're actually doing here.

Generally speaking, in Windows Auth, the value of User.Identity.Name will be in the form of {DOMAIN}{USER} . So if you wanted the domain and/or username, you can split that string on and take the part you're after.

When it comes to Identity, User.Identity.Name should be the value of ApplicationUser.UserName , but depending on the setup, it might be ApplicationUser.Email .

链接地址: http://www.djcxy.com/p/42038.html

上一篇: HTTP错误404.15

下一篇: 获取登录用户ASP.NET MVC的用户名