Skip to main content

Posts

Showing posts with the label get ip address of client in asp.net c#

Get IP Address of client in ASP.Net C#

Hello everyone, I am going to share the code-sample for Get IP Address of client machine using the ASP.Net C#. Table of Context :- 1.       Examples 1 for GET IP Address. 2.       Examples 1 for GET IP Address. Both the example code as below Example 1 , public static string GetLocalIPAddress() {     var host = System.Net. Dns .GetHostEntry(System.Net. Dns .GetHostName());     foreach ( var ip in host.AddressList)     {         if (ip.AddressFamily == AddressFamily .InterNetwork)         {             return ip.ToString();         }     }     throw new Exception ( "Local IP Address Not Found!" ); } Example 2, public string GetIPAddress() { ...