获取当前国家与ip地址
Posted 爛轲
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取当前国家与ip地址相关的知识,希望对你有一定的参考价值。
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地址的主要内容,如果未能解决你的问题,请参考以下文章