How get name and/or IP address of PC that requests WebForm

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I get the name and/or IP address of the PC that requests a WebForm

The request is not made using a hypertext link

I use JavaScript and C#.
 
You wont get name (it's usless anyway). The IP you can get, but if they are
beyhind any type of proxy or gateway you wont...
But something like
Request.ServerVariables("remote_addr")
should get you the IP I believe

--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com


mg said:
Some C# code that actually gets the name and/or IP address of the PC would
be very much appreciated.
 
Back
Top