How can you dynamically get the IP address of the server (PC which you want to connect to)?
feedback
|
|
System.Dns.GetHostEntry can be used to resolve a name to an IP address. | |||
|
feedback
|
| |||||||
feedback
|
|
You want to do an nslookup. Here's an example: http://www.c-sharpcorner.com/UploadFile/DougBell/NSLookUpDB00112052005013753AM/NSLookUpDB001.aspx | |||
|
feedback
|
|
Got this on google. Perhaps it might help. | |||
|
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. | |||
|
feedback
|