-
workstation name
is there any way i can access the workstation name using asp.
i have installed a network of about 90 pc's at work, and i have also created an intrenet site for the staff to look at.
each computer has an individual comptuer name so that in network neighbourhood i can see who's logged in or not.
what i want is say wkstjohn enteres the intrenet site, i want on his welcome page to display the wkst name and the ip address.
is this possible or not.
-
You can easily get the IP Address using Request.ServerVariables("REMOTE_ADDR"). You could get the username if you disabled Anonymous access and use NT authentication through IIS (Request.ServerVariables("AUTH_USER")), but I'm not sure if the Workstation name would show up in the CGI variables collection.