How C # obtains the native network IP address

Source: Internet
Author: User

In the development process we often encounter the need for IP address, used to record the user's last login time address, or sokect network programming, and so on, here are two ways:

1.

Public static String GetIP ()
{
  return system.web. HttpContext. Current.Request.UserHostAddress;
}

2.

public static string Getaddressip ()
{
String strURL = "http://www.ip138.com/ip2city.asp"; Get the IP URL
Uri uri = new Uri (strURL);
WebRequest webreq = WebRequest.Create (URI);
Stream s = webreq. GetResponse (). GetResponseStream ();
StreamReader sr = new StreamReader (s, Encoding.default);
String all = Sr. ReadToEnd (); Read the data format returned by the website: Your IP address is: [x.x.x.x]
Int J = All. IndexOf ("[");
int k = all. IndexOf ("]");
String tempip = All. Substring (j + 1, k-j-1);

String ip = Tempip. Replace ("]", ""). Replace ("", ""). Replace ("<", ""). Replace ("/", ""); Remove Miscellaneous Find IP
return IP;
}

How C # obtains the native network IP address

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.