All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
十天学会ASP.net,第一天_.net资料_编程技术
js变量作用域及可访问性的探讨_JavaScript技术_编程技术
ASP.NET Remoting体系结构(三)
入门:刚开始学.Net时写的分页类_.net资料_编程技术
Windows XP&2003 IIS安装PHP&MySQL环境完全教程_[PHP教程]
delphi高级vcl组件状态栏组件(TStatusBar)使用实例
目录,文件操作详谈—php_[PHP教程]
Sql,server,2005的XML最佳实施策略(4)_[SQL,Server教程]
ASP.NET(C#)生成静态html页面_[Asp.Net教程]
JS获取被拖动的对象的ID_JavaScript技术_编程技术
Reading number is top 10 pictures
A man's favorite things6
壮丽的云彩2
何炅哥为中国人的平均工资鸣不平了
胸部遭到偷窥的女人们
程序员的悲哀
China's first snake village1
这才是真正的人体艺术1
陪睡门马睿菈自曝写真 称首拍大尺度照片1
Black and white also sexy--YanLiu1
A man's favorite things12
Download software ranking
WebService在.NET中的实战应用教学视频 → 第4集
Tram sex maniac 2 (H) rar bag16
Proficient in JavaScript
asp.net技术内幕
Eclipse-CALMSANNY (second edition)
Boxer's Top ten classic battle6
Ashlynn Video5
Professional killers2 data package
Detective task-the top secret prostitution files
Kung fu panda - the secret of the teacher
归海一刀 published in(发表于) 2014/1/30 1:16:57 Edit(编辑)
asp.nep设计IP地址访问限制程序_[Asp.Net教程]

asp.nep设计IP地址访问限制程序_[Asp.Net教程]

asp.nep设计IP地址访问限制程序_[Asp.Net教程]
ip添加页是用了一个ListBox, TextBox,两个Button

而在其他的页上则直接用当前IP对比数据库中的IP,代码如下!

限制IP添加页HTML代码
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ip.aspx.cs" Inherits="admin_ip" %>





无标题页






PRoviderName="<%$ ConnectionStrings:book.ProviderName %>" SelectCommand="SELECT [ip] FROM [ip]">







DataValueField="ip" Height="194px" Width="153px">



填写标准的IP地址到左下文本框里面,然后点击按纽添加!

Display="Dynamic" ErrorMessage="IP地址格式不正确" ValidationExpression="([0-9]{2,3})([.])([0-9]{1,3})([.])([0-9]{1,3})([.])([0-9]{1,3})">







删除选中的行







61.139.33.22















限制IP添加页CS代码
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class admin_ip : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Server.Execute("chklog.aspx");
}
protected void Button1_Click(object sender, EventArgs e)
{

iplxb.Items.Add(iptb.Text);
odb.insert("insert into ip (ip) values (’" + iptb.Text + "’)");
}
protected void LinkButton1_Click(object sender, EventArgs e)
{
for (int i = 0; i < iplxb.Items.Count; i++)
{
if (iplxb.Items[i].Selected)
{
odb.insert("delete from ip where ip=’"+iplxb.SelectedItem.Text+"’");
iplxb.Items.Remove(iplxb.SelectedItem.Text);
}
}
}
}
被需要限制IP的页面调用页的代码
protected void Page_Load(object sender, EventArgs e)
{
string ip = Request.UserHostAddress.ToString();

if (Convert.ToInt32(odb.scr("select count(*) from [ip] where ip=’" + ip + "’")) > 0)
Response.Write("对不起,您的IP被限制访问,请咨询管理员");
}
}


添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.