Click here to Skip to main content
Licence 
First Posted 4 Jan 2006
Views 248,593
Bookmarked 39 times

How to Get Window NT Logged User Name Using ASP.NET

By | 4 Jan 2006 | Article
Article explains How to get windows user name using ASP.NET

Introduction

This article shows How to get the Windows current logged user name using ASP.NET

First Step Setting  Up Web Server

To get the windows user name through programatically. Compulsary we need to set the web server.

Open the Internet Infomation Services(IIS), Select your ASP.NET Virtual Directory, right click, go to the Properties, In Properties window go to Directory Security Tab, Here You Find the "Edit" button in Anonymous access and Authentication Control. Press Edit Button. Now Authentication Methods dialogbox will appear.

In this dialog box by default it is set(checked) Anonymous Access. uncheck this checkbox and go to botom of this dialog box check the Integrated windows authentication. Here why we are selecting this Default web server is logged by ISUER_MachineName so if it is window authentication web server will take the credentials from windows logged user.

Getting the User Name :

using three ways we can get the User Name using C#

1) System.Security.Principal.WindowsPrincipal p = System.Threading.Thread.CurrentPrincipal as System.Security.Principal.WindowsPrincipal;

string strName = p.Identity.Name;

[ OR ]

2) string strName = HttpContext.Current.User.Identity.Name.ToString();

[ OR ]

3) string strName = Request.ServerVariables["AUTH_USER"]; //Finding with name

string strName = Request.ServerVariables[5]; //Finding with index

In Above 3 Cases returnin string contains DomainName\WinNTLoggedUserName

(for Ex: Microsoft\Bill.Gates. Here Microsoft is domain Bill.Gates is Logger User Name )

Using string operations seperate the DomainName and UserName.

 
 


 

 

 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Ramana.Gali

Technical Lead

Singapore Singapore

Member

C# Developer have Hands on Web Developement using ASP.NET, Web Services, Win Serivces, Pocket PC, Smart Device,Enterprize Security Applications and Win Forms Development using .NET FW 1.1 & 2.0.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 4 PinmemberRajamohan.Rajendran18:31 1 Jun '11  
Generalget windows nt logged user name PinmemberMember 32470222:18 31 Dec '10  
GeneralMy vote of 1 Pinmemberdivyesh143222:43 19 Mar '10  
GeneralRe: My vote of 1 [modified] Pinmembermandelbrot19704:36 10 May '12  
GeneralMy vote of 1 PinmemberRaghavan Ram Raja4:07 15 Mar '10  
QuestionHow about this for ASP .NET PinmemberRTS@Orix6:10 28 May '09  
Generaltanks PinmemberMyLoveSarah1:44 16 Mar '09  
GeneralRe: tanks Pinmemberenvador8:30 5 May '09  
RantThis aticle makes no sense Pinmembersada.narayanappa16:39 24 Feb '09  
QuestionHow to Get Window NT Logged User Name Using ASP.NET Pinmemberhkim_zoro14:54 6 Feb '09  
GeneralMy vote of 1 PinmemberVlad Iliescu5:58 27 Jan '09  
QuestionI Keep getting ASP.NET Machine Account Pinmemberstout278:50 16 Sep '08  
GeneralVB Solution PinmemberTrissa10:11 14 Jun '07  
QuestionRe:C# Solution Pinmembertaweel2:48 15 Mar '09  
GeneralAnother quicker way to get the Identity PinmemberRaghu Nadh20:41 30 Apr '07  
GeneralRe: Another quicker way to get the Identity PinmemberArabisoft9:14 31 May '07  
GeneralRe: Another quicker way to get the Identity Pinmemberjoelperez7:55 19 Mar '08  
GeneralRe: Another quicker way to get the Identity Pinmembermycsharpcorner18:54 28 Nov '08  
Generalrequest.servervariables("remote_user") Pinmemberfdsilva4:50 3 Mar '06  
GeneralRe: request.servervariables("remote_user") PinmemberMalayil alex1:39 21 Mar '07  
GeneralRe: request.servervariables("remote_user") Pinmemberinthelight6:05 31 May '07  
GeneralA question about security Pinmemberusawnani8:44 10 Feb '06  
GeneralToString Pinmembersmallguy785:33 27 Jan '06  
HttpContext.Current.User.Identity.Name.ToString()
 
HttpContext.Current.User.Identity.Name is a string, so there is no need to turn it into a string.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120529.1 | Last Updated 4 Jan 2006
Article Copyright 2006 by Ramana.Gali
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid