Click to See Complete Forum and Search --> : How to display the computer name


blakeph
06-21-2005, 04:53 AM
hi guys!

i'm using this code in our local intranet to display the IP address of the user:
<% Response.Write "Your IP address is: " + Request.ServerVariables "REMOTE_ADDR") %>

but do you have an idea how to display the computer name?

thanks!

buntine
06-21-2005, 05:34 AM
That information is not sent to the server via a request. You can only get the name of the machine the script is actually running from.

Regards.