Hello,
My IIS Server is configurated as follows:
Anonymous access with IUSR_Name account,
Integrated Windows authentication.
I am tracking user activity on each page. To get his Windows user id, I tried several things:
Request.ServerVariables("LOGON_USER"
Request.ServerVariables("AUTH_USER"
Dim Ident As WindowsIdentity
_User = Ident.GetCurrent.Name()
Using ServerVariables, it's only working on my localhost and is set to blank for other users.
Using WindowsIdentity, I'm getting the anonymous account of my site (IUSR_Name) for other users.
Can you help me to find the Windows account of my user?
Thanks
My IIS Server is configurated as follows:
Anonymous access with IUSR_Name account,
Integrated Windows authentication.
I am tracking user activity on each page. To get his Windows user id, I tried several things:
Request.ServerVariables("LOGON_USER"
Request.ServerVariables("AUTH_USER"
Dim Ident As WindowsIdentity
_User = Ident.GetCurrent.Name()
Using ServerVariables, it's only working on my localhost and is set to blank for other users.
Using WindowsIdentity, I'm getting the anonymous account of my site (IUSR_Name) for other users.
Can you help me to find the Windows account of my user?
Thanks