Getting the IP address of server in ASP.NET?

前端 未结 6 1974
感情败类
感情败类 2020-11-30 03:53

How do I get the IP address of the server that calls my ASP.NET page? I have seen stuff about a Response object, but am very new at c#. Thanks a ton.

6条回答
  •  失恋的感觉
    2020-11-30 04:32

    This should work:

     //this gets the ip address of the server pc
    
      public string GetIPAddress()
      {
         IPHostEntry ipHostInfo = Dns.GetHostEntry(Dns.GetHostName()); // `Dns.Resolve()` method is deprecated.
         IPAddress ipAddress = ipHostInfo.AddressList[0];
    
         return ipAddress.ToString();
      }
    

    http://wec-library.blogspot.com/2008/03/gets-ip-address-of-server-pc-using-c.html

    OR

     //while this gets the ip address of the visitor making the call
      HttpContext.Current.Request.UserHostAddress;
    

    http://www.geekpedia.com/KB32_How-do-I-get-the-visitors-IP-address.html

提交回复
热议问题