IP 추가 페이지도 ListBox, TextBox 등을 활용하는 게
좋을 것 같아요!
두 개의 버튼,
다른 페이지에서 현재 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" " 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="서버">
<div>
<asp:SqlDataSource ID="SqlDataSource1" runat="서버" ConnectionString="<%$ ConnectionStrings:book %>"
ProviderName="<%$ ConnectionStrings:book.ProviderName %>" SelectCommand="[ip]에서 [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="너비: 100px; 테두리 오른쪽: #33ccff 1px 홈; 테두리 상단: #33ccff 1px 홈; 테두리 왼쪽: #33ccff 1px 홈; 테두리 하단: #33ccff 1px 홈; ">
<asp:ListBox ID="iplxb" runat="서버" DataSourceID="SqlDataSource1" DataTextField="ip"
DataValueField="ip" Height="194px" Width="153px"></asp:ListBox></td>
<td 스타일="너비: 100px; 테두리 오른쪽: #33ccff 1px 홈; 테두리 상단: #33ccff 1px 홈; 테두리 왼쪽: #33ccff 1px 홈; 테두리 하단: #33ccff 1px 홈;">
왼쪽 하단 텍스트 상자에 표준 IP 주소를 입력한 후 추가 버튼을 클릭하세요! <br />
<asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="서버" ControlToValidate="iptb"
Display="동적" 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 스타일="너비: 100px; 테두리 오른쪽: #33ccff 1px 홈; 테두리 상단: #33ccff 1px 홈; 테두리 왼쪽: #33ccff 1px 홈; 테두리 하단: #33ccff 1px 홈;">
<asp:LinkButton ID="LinkButton1" runat="server" OnClick="LinkButton1_Click">선택한 행 삭제</asp:LinkButton></td>
</tr>
<tr>
<td 스타일="너비: 100px; 테두리 오른쪽: #33ccff 1px 홈; 테두리 상단: #33ccff 1px 홈; 테두리 왼쪽: #33ccff 1px 홈; 테두리 하단: #33ccff 1px 홈;">
<asp:TextBox ID="iptb" runat="server" Width="150px">61.139.33.22</asp:TextBox></td>
<td 스타일="너비: 100px; 테두리 오른쪽: #33ccff 1px 홈; 테두리 상단: #33ccff 1px 홈; 테두리 왼쪽: #33ccff 1px 홈; 테두리 하단: #33ccff 1px 홈;">
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="추가" Width="80px" /></td>
</tr>
</table>
</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 사용;
공개 부분 클래스 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가 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는 접근이 제한되어 있습니다. 관리자에게 문의하십시오.");
}
}