简体   繁体   中英

Environment.UserName returning application pool name instead of username

The following line

Environment.UserName

In debug mode in visual studio returns the identity of the user like I need.

Then when I set up my site in IIS and run the code the same line returns the name of the application pool which the site uses.

How can I get it to still return the user name ?

Try something like this:

if (System.Web.HttpContext.Current.User.Identity.IsAuthenticated)
{
   string username = System.Web.HttpContext.Current.User.Identity.Name;
}

Important note: You need to configure IIS to enable integrated security and disable anonymous logon.

Note that Environment.Username returns the Username on the current Thread.

Try using

Request.ServerVariables["LOGON_USER"]

It will return DOMAIN\\USERNAME . You can then split it etc.

This worked for me. Use Environment.GetEnvironmentVariable("USERNAME") for current Login username.

Link : https://www.c-sharpcorner.com/uploadfile/puranindia/the-environment-class-in-C-Sharp/

In IIS, for your application, please . Enable ASP.NET Impersonation在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM