How can you dynamically get the IP address of the server (PC which you want to connect to)?

link|improve this question
1  
Be aware that a server may have more than one address. Also, why do you need to resolve the name to an IP address? Why not let the network infrastructure do that for you? – John Saunders Jun 23 '09 at 1:06
feedback

5 Answers

System.Dns.GetHostEntry can be used to resolve a name to an IP address.

link|improve this answer
feedback
IPHostEntry Host = Dns.GetHostEntry(DNSNameString);
DoSomethingWith(Host.AddressList);
link|improve this answer
Thanks guys for your help but I want to get the visitor's IP address not the pc im working on – Dee Jun 22 '09 at 23:11
1  
Erm. My example is nothing to do with the PC you're on. DNSNameString is meant to be the name of the server you're connecting to -- that is, answering the original question. I don't know where this stuff you're saying about a visitor's IP address comes from or what it has to do with the question. – chaos Jun 22 '09 at 23:21
feedback

You want to do an nslookup.

Here's an example:

http://www.c-sharpcorner.com/UploadFile/DougBell/NSLookUpDB00112052005013753AM/NSLookUpDB001.aspx

link|improve this answer
feedback

Got this on google. Perhaps it might help.

http://www.biztalkgurus.com/forums/t/2057.aspx

link|improve this answer
it'd be better inline! – Tim Lovell-Smith May 9 at 5:55
feedback

Based on your comment on chaos's answer, you don't want the IP address of a server, you want the IP address of a client. If that's the case, fix your question ... and your answer would be HttpRequest.UserHostAddress.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown