手机
当前位置:查字典教程网 >编程开发 >asp.net教程 >.net获取本机公网IP地址示例
.net获取本机公网IP地址示例
摘要:代码很简单,直接看代码复制代码代码如下:usingSystem;usingSystem.Net;usingSystem.Text.Regul...

代码很简单,直接看代码

复制代码 代码如下:

using System;

using System.Net;

using System.Text.RegularExpressions;

namespace Keleyi.Com

{

public class GetInternetIP

{

public static string GetIP()

{

using (var webClient = new WebClient())

{

try

{

var temp = webClient.DownloadString("http://iframe.ip138.com/ic.asp");

var ip = Regex.Match(temp, @"[(?<ip>d+.d+.d+.d+)]").Groups["ip"].Value;

return !string.IsNullOrEmpty(ip) ? ip : null;

}

catch (Exception ex)

{

return ex.Message;

}

}

}

}

}

【.net获取本机公网IP地址示例】相关文章:

litjson读取数据示例

asp.net获取网站目录物理路径示例

ASP.NET取得所有颜色值示例

php获取301跳转URL简单实例

获取当前url

.net获取本机公网IP地址示例

asp.net连接数据库读取数据示例分享

asp.net中获取远程网页的内容之一(downmoon原创)

Asp.net获取服务器指定文件夹目录文件并提供下载的方法

asp.net读取excel中的数据并绑定在gridview

精品推荐
分类导航