I am running a server, and I want to display my own IP address.
What is the syntax for getting the computer\'s own (if possible, external) IP address?
Someon
For getting the current public IP address, all you need to do is create an ASPX page with the following line on the page load event:
Response.Write(HttpContext.Current.Request.UserHostAddress.ToString());