ゲストブックを作成するときにこのようなものを作成しようと思いました。これは他の人を引き付けるための単なる方法である可能性があります。IP
追加ページでは ListBox、TextBox を使用します。
他のページでは、現在の IP を直接使用してデータベース内の IP を比較する2 つのボタン
。コードは次のとおりです。
ページの HTML コードを追加します。
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ip.aspx.cs" Inherits="admin_ip" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<html xmlns=" http://www.w3.org/1999/xhtml " >
<head runat="サーバー">
<title>無題のページ</title>
<link href="../images/news.css" rel="stylesheet" type="text/css" />
</head>
<本文>
<form id="form1" runat="server">
<div>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:book %>"
ProviderName="<%$ ConnectionStrings:book.ProviderName %>" SelectCommand="SELECT [ip] FROM [ip]">
</asp:SqlDataSource>
<table align="center" style="border-right: #0066cc 1px 点線; border-top: #0066cc 1px 点線; border-left: #0066cc 1px 点線; border-bottom: #0066cc 1px 点線">
<tr>
<td rowspan="2" style="width: 100px; border-right: #33ccff 1px 溝; border-top: #33ccff 1px 溝; border-left: #33ccff 1px 溝; border-bottom: #33ccff 1px 溝; ">
<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 溝; border-top: #33ccff 1px 溝; border-left: #33ccff 1px 溝; border-bottom: #33ccff 1px 溝;">
左下のテキストボックスに標準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 溝; border-top: #33ccff 1px 溝; border-left: #33ccff 1px 溝; border-bottom: #33ccff 1px 溝;">
<asp:LinkButton ID="LinkButton1" runat="server" OnClick="LinkButton1_Click">選択した行を削除</asp:LinkButton></td>
</tr>
<tr>
<td style="width: 100px; border-right: #33ccff 1px 溝; border-top: #33ccff 1px 溝; border-left: #33ccff 1px 溝; border-bottom: #33ccff 1px 溝;">
<asp:TextBox ID="iptb" runat="server" width="150px">61.139.33.22</asp:TextBox></td>
<td style="width: 100px; border-right: #33ccff 1px 溝; border-top: #33ccff 1px 溝; border-left: #33ccff 1px 溝; border-bottom: #33ccff 1px 溝;">
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Add" width="80px" /></td>
</tr>
</テーブル>
</div>
</form>
</body>
</html>
ページCSコードを追加するIPを制限する
システムを使用する;
System.Data を使用します。
System.Configuration を使用します。
System.Collections を使用します。
System.Web を使用します。
System.Web.Security を使用します。
System.Web.UI を使用します。
System.Web.UI.WebControls を使用します。
System.Web.UI.WebControls.WebParts を使用します。
System.Web.UI.HtmlControls を使用して
public 部分クラス admin_ip : System.Web.UI.Page
{
protected void Page_Load(オブジェクト送信者, EventArgs e)
{
Server.Execute("chklog.aspx");
}
protected void Button1_Click(オブジェクト送信者、EventArgs e)
{
iplxb.Items.Add(iptb.Text);
odb.insert("ip (ip) 値に挿入 ('" + iptb.Text + "')");
}
protected void LinkButton1_Click(オブジェクト送信者、EventArgs e)
{
for (int i = 0; i < iplxb.Items.Count; i++)
{
if (iplxb.Items[i].Selected)
{
odb.insert("ip='"+iplxb.SelectedItem.Text+"'") の IP から削除します。
iplxb.Items.Remove(iplxb.SelectedItem.Text);
}
}
}
}
IPを制限する必要があるページによって呼び出されるページのコード
protected void Page_Load(オブジェクト送信者, 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.cnblogs.com/archive/2006/06/21/431639.html