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

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

Article explains How to get windows user name using ASP.NET
15 votes, 42.9%
1
1 vote, 2.9%
2
2 votes, 5.7%
3
4 votes, 11.4%
4
13 votes, 37.1%
5
2.75/5 - 35 votes
μ 2.75, σa 3.25 [?]

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

Software Developer (Senior)

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.Rajendran19:31 1 Jun '11  
Generalget windows nt logged user name PinmemberMember 32470223:18 31 Dec '10  
GeneralMy vote of 1 Pinmemberdivyesh143223:43 19 Mar '10  
GeneralMy vote of 1 PinmemberRaghavan Ram Raja5:07 15 Mar '10  
QuestionHow about this for ASP .NET PinmemberRTS@Orix7:10 28 May '09  
Generaltanks PinmemberMyLoveSarah2:44 16 Mar '09  
GeneralRe: tanks Pinmemberenvador9:30 5 May '09  
RantThis aticle makes no sense Pinmembersada.narayanappa17:39 24 Feb '09  
QuestionHow to Get Window NT Logged User Name Using ASP.NET Pinmemberhkim_zoro15:54 6 Feb '09  
GeneralMy vote of 1 PinmemberVlad Iliescu6:58 27 Jan '09  
QuestionI Keep getting ASP.NET Machine Account Pinmemberstout279:50 16 Sep '08  
GeneralVB Solution PinmemberTrissa11:11 14 Jun '07  
QuestionRe:C# Solution Pinmembertaweel3:48 15 Mar '09  
GeneralAnother quicker way to get the Identity PinmemberRaghu Nadh21:41 30 Apr '07  
GeneralRe: Another quicker way to get the Identity PinmemberArabisoft10:14 31 May '07  
GeneralRe: Another quicker way to get the Identity Pinmemberjoelperez8:55 19 Mar '08  
GeneralRe: Another quicker way to get the Identity Pinmembermycsharpcorner19:54 28 Nov '08  
Generalrequest.servervariables("remote_user") Pinmemberfdsilva5:50 3 Mar '06  
GeneralRe: request.servervariables("remote_user") PinmemberMalayil alex2:39 21 Mar '07  
GeneralRe: request.servervariables("remote_user") Pinmemberinthelight7:05 31 May '07  
GeneralA question about security Pinmemberusawnani9:44 10 Feb '06  
GeneralToString Pinmembersmallguy786:33 27 Jan '06  

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.120210.1 | Last Updated 4 Jan 2006
Article Copyright 2006 by Ramana. Gali
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid