HomeCSharpC# Tips & Tricks #36 – How to Get User’s IP Address

C# Tips & Tricks #36 – How to Get User’s IP Address

This blog post will explain various ways by which the .NET developers can get user’s IP address using ASP.NET and C#.

How to get User’s IP Address using ASP.NET and C# ?

There are 3 different ways which you can use to fetch the IP address using C#.

  1. Request.UserHostAddress
  2. Request.ServerVariables & REMORE_ADDR
  3. Request.ServerVariables & HTTP_X_FORWARDED_FOR

The IP Address can be retreived in the following ways.

String str = HttpContext.Current.Request.UserHostAddress;

or

HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];

The REMOTE_ADDR usually provides the IP Address of the Internet Service Provider in some cases.As a result it may be required to test with HTTP_X_FORWARDED_FOR to get the real IP Address.This might also contain an array of IP addresses when connected through proxies.

Eg :

Request.ServerVariables("HTTP_X_FORWARDED_FOR");

and check to see if it returns an Empty and then retreive the corresponding IP Address using REMOTE_ADDR.

Leave a Reply

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...