码迷,mamicode.com
首页 > 其他好文 > 详细

获取当前国家与ip地址

时间:2017-09-12 12:15:38      阅读:476      评论:0      收藏:0      [点我收藏+]

标签:form   asp   orm   csharp   display   inf   nload   str   html   

JS获取当前国家示例:

<script src="http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js"></script>
    <script>
        $(function () {
            var name = remote_ip_info["country"];
            document.getElementById("guojia").value = name;

        })
     </script>
<input style="display:none" id="guojia" name="country" value="" />

 

C#获取ip地址:

//获取当前IP
        public string GetIp()
        {
            System.Net.WebClient client = new System.Net.WebClient();
            client.Encoding = System.Text.Encoding.Default;
            string reply = client.DownloadString("http://www.ip138.com/ip2city.asp");
            int start = reply.IndexOf("[");
            int end = reply.IndexOf("]");
            return reply.Substring((start + 1), (end - start - 1));
        }

  

获取当前国家与ip地址

标签:form   asp   orm   csharp   display   inf   nload   str   html   

原文地址:http://www.cnblogs.com/lanke0/p/7509037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!