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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top