如何获取IP地址? [英] How to Get IP Address?

查看:225
本文介绍了如何获取IP地址?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想要得到的IP地址不管是谁注册在我的网站。如何在ASPNET做到这一点。我用下面的code,但是,它没有得到正确的IP地址

 字符串ip地址= Request.UserHostAddress;
 

解决方案

您可以使用此方法来获取客户机的IP地址。

 公共静态字符串GetIP()
{
    字符串IP =
        HttpContext.Current.Request.ServerVariables [HTTP_X_FORWARDED_FOR];

    如果(string.IsNullOrEmpty(IP))
    {
        IP = HttpContext.Current.Request.ServerVariables [REMOTE_ADDR];
    }

    返回的IP;
}
 

I want to get the ip address whoever is registering in my site. How to do this in ASPNET. I used the following code, but, it is not getting the proper IP Address

string ipaddress = Request.UserHostAddress;

解决方案

You can use this method to get the IP address of the client machine.

public static String GetIP()
{
    String ip = 
        HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];

    if (string.IsNullOrEmpty(ip))
    {
        ip = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
    }

    return ip;
}

这篇关于如何获取IP地址?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆