I am using this code but this is not show Visitor IP Address
string ipaddress;
ipaddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (ipaddress == "" || ipaddress == null)
{
ipaddress = Request.ServerVariables["REMOTE_ADDR"];
}
Response.Write(ipaddress);
Please help me





Ashish SrivastavaPosted Aug 22, 2016, 9:28 AM
Bikesh SrivastavaPosted Aug 22, 2016, 1:45 AM
Ajay MalikPosted Aug 22, 2016, 12:05 AM