2
Answers

find country name from ip address using c#

Photo of Devendra  Kumar

Devendra Kumar

6y
5.9k
1
 
i want to getiing country name from ip address :
my code is :
 
string ip = Request.UserHostAddress;
GeoService.GeoIPService service = new GeoService.GeoIPService();
GeoService.GeoIP output = service.GetGeoIP(ip);
string country = output.CountryName;
 
but getting error 
 
 

Answers (2)