Answers for "get ip of client http request c#"

C#
0

get client ip address c#

//get client ip address
Public string GetIp()
{
string ip = System.Web.HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (string.IsNullOrEmpty(ip))
{
ip = System.Web.HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
}
  return ip;
}
Posted by: Guest on April-10-2021

Code answers related to "get ip of client http request c#"

C# Answers by Framework

Browse Popular Code Answers by Language