我已经获取了我的网站访问者的IP地址,我怎样才能获得他们的地理位置?

时间:2012-06-09 06:25:56

标签: asp.net geolocation ip-address

我想获取网站访问者的地理位置并将其存储在我的数据库中,已经获取了IP地址。

我正在使用asp.net 3.0

protected void Page_Load( object sender, EventArgs e)
    {
        // Track Visitors
        string ipAddress = IpAddress();
        string hostName = Dns .GetHostByAddres(ipAddress).HostName;
        StreamWriter wrtr = new StreamWriter (Server.MapPath( "visitors.log" ), true );
        wrtr.WriteLine( DateTime .Now.ToString() + " | " + ipAddress + " | " + hostName + " | " + Request.Url.ToString());
        wrtr.Close();
    }

    private string IpAddress()
    {
        string strIpAddress;
        strIpAddress = Request.ServerVariables[ "HTTP_X_FORWARDED_FOR" ];
        if (strIpAddress == null )
            strIpAddress = Request.ServerVariables[ "REMOTE_ADDR" ];
        return strIpAddress;
    }

1 个答案:

答案 0 :(得分:1)

没有内置的方法。互联网上有网络服务,将提供这种映射。此类数据库“GeoIP数据库”也可供本地使用。

但最好订阅更新的网络服务并使用它来获取位置。 Google's Client Location API应该在这里帮助你。

一些现代浏览器会向您发送用户位置。你可以用它。但由于并非所有浏览器都遵循此规则,因此不可靠。您可以查看w3.org提供的Geo Location API