IPQuery 库使用说明

简介: 因之前的文章《IP地址库解析》上传文件错误,导致许多网友运行时出现错误,在此向各位道歉了。在此奉上使用说明:============================================使用说明============================================1、下载 qqwry.dat http://www.onlinedown.net/soft/19051.htm2、解压文件,放到网站的bin目录下。

因之前的文章《IP地址库解析》上传文件错误,导致许多网友运行时出现错误,在此向各位道歉了。

在此奉上使用说明:

============================================
使用说明
============================================
1、下载 qqwry.dat 
http://www.onlinedown.net/soft/19051.htm

2、解压文件,放到网站的bin目录下。
形成如下结构:



3、浏览首页: Default.aspx 即可

============================================
IPQUERY.DLL 使用说明
============================================
1、在网站根目录下初始化IP数据库文件

protected void Application_Start(object sender, EventArgs e)
{
    // 这里初始化查询引擎,设置 qqwry.dat 的网站根目录
    string ipData = Server.MapPath(@"~\bin\qqwry.dat");
    IPQuery.Facade.SingleQuery.Instance.SetDataFilePath(ipData);
}

2、查询ip地址

/// <summary>
/// 点击查询按钮
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnQuery_Click(object sender, EventArgs e)
{
    string ip = this.TextBox1.Text;
    if (string.IsNullOrEmpty(ip))
    {
        this.Page.Response.Write("大哥,好歹也给个地址啊!");
        return;
    }
    this.Page.Response.Write(this.Output(SingleQuery.Instance.Find(ip)));
}
     
/// <summary>
/// 输出IP地址记录
/// </summary>
/// <param name="ipRecord"></param>
/// <returns></returns>
private string Output(IPAddressRecord ipRecord)
{
    if (null != ipRecord)
    {
        return string.Format("{0} - {1} {2} {3}", AddressConvert.UInt32ToIpV4String(ipRecord.IPStart), AddressConvert.UInt32ToIpV4String(ipRecord.IPEnd), ipRecord.Country, ipRecord.Area);
    }
    return string.Empty;
}

============================================
××××××××××××××××××××××××××××××××××××××××××××
作者:孤剑
http://www.cnblogs.com/alonesword/

http://blog.csdn.net/alonesword/



目录
相关文章
|
7月前
VNG S99使用说明
VNG S99使用说明
35 0
|
存储 安全 程序员
@SafeVarargs 使用说明
@SafeVarargs 是jdk1.7引入的适用于可变参数与泛型能够更好结合的一个注解。 @SuppressWarnings 产生编译期警告的示例代码
65 0
UpdateData使用说明
UpdateData() MFC的窗口函数,下面是MSDN的说明; Call this member function to initialize data in a dialog box, or to retrieve and validate dialog data.
962 0
|
Web App开发 应用服务中间件 nginx
JBrowse使用说明:如何安装JBrowse
JBrowse is a fast, scalable genome browser built completely with JavaScript and HTML5. It can run on your desktop, or be embedded in your website. 如果你想要使用JBrowse,一定要有管理员权限,否则建议使用IGV。
2613 0
|
数据库 数据安全/隐私保护 SQL
|
JavaScript

相关实验场景

更多