国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

.net 做的IP 訪問限制

2019-11-18 17:08:30
字體:
來源:轉載
供稿:網友

偶做留言本的時候想起做這么個,具體思路也許不好,做出來只是拋磚引玉,希望有更好的方法!

ip添加頁是用了一個ListBox, TextBox,兩個Button

而在其他的頁上則直接用當前IP對比數據庫中的IP,代碼如下!

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

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "

<html xmlns="<head runat="server">
    <title>無標題頁</title>
    <link href="../images/news.
CSS" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:book %>"
                    </asp:SqlDataSource>
        <table align="center" style="border-right: #0066cc 1px dotted; border-top: #0066cc 1px dotted; border-left: #0066cc 1px dotted; border-bottom: #0066cc 1px dotted">
            <tr>
                <td rowspan="2" style="width: 100px; border-right: #33ccff 1px groove; border-top: #33ccff 1px groove; border-left: #33ccff 1px groove; border-bottom: #33ccff 1px groove;">
                    <asp:ListBox ID="iplxb" runat="server" DataSourceID="SqlDataSource1" DataTextField="ip"
                        DataValueField="ip" Height="194px" Width="153px"></asp:ListBox></td>
                <td style="width: 100px; border-right: #33ccff 1px groove; border-top: #33ccff 1px groove; border-left: #33ccff 1px groove; border-bottom: #33ccff 1px groove;">
                    填寫標準的IP地址到左下文本框里面,然后點擊按紐添加!<br />
                    <asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" ControlToValidate="iptb"
                        Display="Dynamic" ErrorMessage="IP地址格式不正確" ValidationExpression="([0-9]{2,3})([.])([0-9]{1,3})([.])([0-9]{1,3})([.])([0-9]{1,3})"></asp:RegularExpressionValidator></td>
            </tr>
            <tr>
                <td style="width: 100px; border-right: #33ccff 1px groove; border-top: #33ccff 1px groove; border-left: #33ccff 1px groove; border-bottom: #33ccff 1px groove;">
                    <asp:LinkButton ID="LinkButton1" runat="server" OnClick="LinkButton1_Click">刪除選中的行</asp:LinkButton></td>
            </tr>
            <tr>
                <td style="width: 100px; border-right: #33ccff 1px groove; border-top: #33ccff 1px groove; border-left: #33ccff 1px groove; border-bottom: #33ccff 1px groove;">
                    <asp:TextBox ID="iptb" runat="server" Width="150px">61.139.33.22</asp:TextBox></td>
                <td style="width: 100px; border-right: #33ccff 1px groove; border-top: #33ccff 1px groove; border-left: #33ccff 1px groove; border-bottom: #33ccff 1px groove;">
                    <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="增加" Width="80px" /></td>
            </tr>
      </table>
   
    </div>
    </form>
</body>
</html>
限制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被限制訪問,請咨詢管理員");
    }
}

http://thcjp.VEVb.com/archive/2006/06/21/431639.html


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 巩义市| 梁平县| 页游| 黄浦区| 大悟县| 金昌市| 怀安县| 汨罗市| 蒲江县| 呈贡县| 绥江县| 桃园县| 延边| 黔西| 科技| 永平县| 中卫市| 惠水县| 镇雄县| 宁海县| 彭阳县| 抚宁县| 文昌市| 郧西县| 清镇市| 陵川县| 南澳县| 织金县| 吉首市| 通海县| 项城市| 习水县| 安义县| 闽侯县| 侯马市| 玉林市| 津市市| 清原| 无为县| 西和县| 内丘县|