我遇到与
中所述相同的问题Getting the location from an IP address
但我想在ASP.NET MVC4中做..
我相信我需要使用以下脚本......
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script>
contry_code = google.loader.ClientLocation.address.country_code
city = google.loader.ClientLocation.address.city
region = google.loader.ClientLocation.address.region
</script>
但我将如何从我的控制器打电话。在我的MVC控制器中,我得到如下IP地址: string ipAddress = Request.UserHostAddress;
之后如何将我的IP地址传递给控制器中的脚本并从Google获得结果?