vote up 0 vote down star

I have tried multiple ways of grabbing the username of a current logged on user in vb.net/asp.net. I am running it on IIS 6 and understand that it will return NETWORK SERVICE for the username. I need to grab the username of the actual windows box log on.

I have tried the following code: Returns NT AUTHORITY\NETWORK SERVICE

Dim User = System.Security.Principal.WindowsIdentity.GetCurrent.User
Dim UserName = User.Translate(GetType(System.Security.Principal.NTAccount)).Value

Any help will be greatly appreciated. If I am unclear please let me know.

flag

1 Answer

vote up 2 vote down check

You should set

 <authentication mode="Windows" />
 <identity impersonate="true" />

in Web.config to be able to do that.

link|flag
works exactly as need. thanks for the quick answer. – ABParsons Apr 15 at 23:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.