I am working on asp.net applications that live on an intranet. I frequently use this line to get the user's name:
Dim x As String = System.Web.HttpContext.Current.Request.ServerVariables("AUTH_USER")
Now I need to get the user's workstation's name. What is the name for that server variable?
Dim x As String = System.Web.HttpContext.Current.Request.ServerVariables("AUTH_USER")
Now I need to get the user's workstation's name. What is the name for that server variable?