2
Answers

find country name from ip address using c#

Devendra  Kumar

Devendra Kumar

6y
5.8k
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)