123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254 |
- <!--#include file="Conn.asp"--><%Checklogin("信息管理")%><!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>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>管理区域</title>
- <link rel="stylesheet" href="css/common.css" type="text/css" />
- <link rel="stylesheet" href="css/jquery.galpop.css" type="text/css" />
- <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
- <script type="text/javascript" src="js/js.js"></script>
- <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
- <script type="text/javascript" src="js/jquery.galpop.min.js"></script>
- </head>
- <body>
- <div id="man_zone">
- <%
- Act = Request.QueryString("act")
- If act = "save" Then
- Set Rs = Server.CreateObject("ADODB.RecordSet")
- isedit = False
- id = Request.Form("id")
- If id<>"" And IsNumeric(id) Then isedit = True
- IPAddress=TextEnCode(Request.Form("IPAddress"))
- If isedit Then
- Rs.Open "Select * From allowIp Where id="& id,Conn,1,3
- If Rs.Bof And Rs.Eof Then
- Rs.AddNew
- End If
-
- Rs("IPAddress")=IPAddress
- Rs.Update:Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing
- Page = Request.QueryString("Page")
- Keys=Server.UrlEnCode(Request.QueryString("Keys"))
- Ord=Server.UrlEnCode(Request.QueryString("Ord"))
- Response.Redirect "?keys="&Keys&"&Ord="&Ord&"&Page="&Page
- Else
- Rs.Open "allowIp",Conn,1,3
-
- Rs.AddNew
- Rs("IPAddress")=IPAddress
- Rs.Update:Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing
- Response.Redirect "?"
- End If
- Conn.Close:Set Conn=Nothing
- Response.End
- End If 'end save
- If Act = "add" Or Act = "edit" Then
- id = Request.QueryString("id")
- isedit = False
- If id<>"" And IsNumeric(id) Then isedit=True
- If isedit Then
- Set Rs = Server.CreateObject("ADODB.RecordSet")
- Rs.Open "Select * From allowIp Where id="&id,Conn,1,1
- If Not Rs.Bof And Not Rs.Eof Then
- IPAddress=TextUnCode(Rs("IPAddress"))
- Else
- isedit = False
- End If
- Rs.Close:Set Rs=Nothing
- End If
- Page = Request.QueryString("Page")
- Keys=Server.UrlEnCode(Request.QueryString("Keys"))
- Ord=Server.UrlEnCode(Request.QueryString("Ord"))
- hrefstr = "?keys="&Keys&"&Ord="&Ord&"&Page="&Page
- %>
- <form name="form1" method="post" action="<%=hrefstr%>&act=save">
- <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
- <tbody>
- <tr>
- <th width="8%">IP</th>
- <td><input type="text" id="IPAddress" name="IPAddress" value="<%=IPAddress%>" class="txt1" /><input type="hidden" name="id" value="<%=id%>" /></td>
- </tr>
- <tr>
- <th></th>
- <td><input type="submit" name="save" id="save" value="确定" class="btn1" /> <input type="reset" name="save" id="save" value="重置" class="btn1" /> <input type="button" value="返回" class="btn1" onClick="location.href='<%=hrefstr%>'" /></td>
- </tr>
- </tbody>
- </table>
- </form>
- </div>
- </body>
- </html>
- <%
- Response.End
- End If 'End add
- If Act="postchk" Then
- Keys = Server.UrlEnCode(Request.QueryString("Keys"))
- Ord = Server.UrlEnCode(Request.QueryString("Ord"))
- Page = Request.QueryString("Page")
- chkact = Request.Form("chkact")
- SqlStr = ""
- For i = 1 To Request.Form("chkbox").Count
- If SqlStr<>"" Then
- SqlStr = SqlStr & " Or id="&Request.Form("chkbox")(i)
- Else
- SqlStr = " Where id="&Request.Form("chkbox")(i)
- End If
- Next
- SqlStr = "Delete From country"&SqlStr
- Conn.Execute(SqlStr):Conn.Close:Set Conn=Nothing
- Response.Redirect "?Keys="&Keys&"&Ord="&Ord&"&Page="&Page
- Response.End
- End If 'End postchk
- Keys=Request.QueryString("Keys")
- Keyscode=TextEnCode(Keys)
- Ord=Request.QueryString("Ord")
- Page = Request.QueryString("Page")
- If Ord<>"" Then
- OrdStr=Ord&","
- Else
- OrdStr=""
- End If
- Set Rs=Server.CreateObject("ADODB.RecordSet")
- Rs.Open "Select * From allowIp Where IPAddress like '%"&Keyscode&"%' Order By id Desc",Conn,1,1
- Keys=Server.UrlEnCode(Keys)
- Ord=Server.UrlEnCode(Ord)
- hrefstr = "?keys="&Keys
- %>
- <form id="form1" method="post" action="?act=postchk&Keys=<%=keys%>&Ord=<%=Ord%>&Page=<%=Page%>" onSubmit="return false" />
- <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
- <thead>
- <tr>
- <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
- <th width="6%">序号</th>
- <th width="60%">IP</th>
- <th width="30%">操作</th>
- </tr>
- </thead>
- <tbody>
- <%
- If Not Rs.Bof And Not Rs.Eof Then
- Rs.PageSize = 10
- If Page = "" Then Page = 1
- If Page = "end" Then Page = Rs.PageCount
- If Not IsNumeric(Page) Or Page < 1 Then Page = 1
- Page = Cint(Page)
- If Page > Rs.PageCount Then Page = Rs.PageCount
- Rs.AbsolutePage = Page
- TempNum = Rs.PageSize * (Page - 1)
-
- Set Rs1=Server.CreateObject("ADODB.RecordSet")
- For i=1 To Rs.PageSize
- If Rs.Bof Or Rs.Eof Then Exit For
- TempNum=TempNum+1:classid=Rs(1)
- %>
- <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
- <td align="center"><input type="checkbox" name="chkbox" value="<%=Rs(0)%>" /></td>
- <td align="center"><%=TempNum%></td>
- <td align="center"><%=Rs("IPAddress")%></td>
- <td align="center"><a href="?Keys=<%=keys%>&Ord=<%=Ord%>&Page=<%=Page%>&act=edit&id=<%=Rs(0)%>" class="ico_edit ico">修改</a></td>
- </tr>
- <%
- Rs.MoveNext
- Next
- Else
- If Keys="" Then
- %>
- <tr>
- <td align="center" colspan="4">Sorry,当前暂无信息</td>
- </tr>
- <%
- Else
- %>
- <tr>
- <td align="center" colspan="4"><a href="?">Sorry,没有找到“<%=Keyscode%>”相关的信息,点击返回</a></td>
- </tr>
- <%
- End If
- End If
- %>
- </tbody>
- <tfoot>
- <tr>
- <td colspan="5">
- <div class="showpagebox">
- <%
- If Rs.PageCount > 1 Then
- PageName="?Keys="&Keys&"&Ord="&Ord&"&"
- Pagelen=3
- If Page>1 Then
- Response.Write "<a href="""&PageName&"Page=1"">首页</a>"
- Response.Write "<a href="""&PageName&"Page="&Page-1&""">上一页</a>"
- End If
- If Pagelen*2+1 >= Rs.PageCount Then
- StartPage=1:EndPage=Rs.PageCount
- Else
- If Page<=Pagelen+1 Then
- StartPage=1
- EndPage=Pagelen*2+1
- Else
- StartPage=Page-Pagelen
- EndPage=Page+Pagelen
- End If
- If Page+Pagelen>Rs.PageCount Then StartPage=Rs.PageCount-Pagelen*2:EndPage=Rs.PageCount
- End If
- For i = StartPage To EndPage
- If i = Page Then
- Response.Write "<a class=""current"">"&i&"</a>"
- Else
- Response.Write "<a href="""&PageName&"Page="&i&""">"&i&"</a>"
- End If
- Next
- If Page<Rs.PageCount Then
- If Rs.PageCount - Page > Pagelen Then Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">..."&Rs.PageCount&"</a>"
- Response.Write "<a href="""&PageName&"Page="&Page+1&""">下一页</a>"
- Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">尾页</a>"
- End If
- Response.Write "<input type=""text"" id=""Pagego"" value="""&Page&""" onFocus=""if(this.value == '"&Page&"'){this.value='';}"" onBlur=""if(this.value == ''){this.value='"&Page&"';}"" onKeyUp=""this.value=this.value.replace(/\D/g,'')"" onKeyDown=""if(event.keyCode==13){location.href='"&PageName&"Page='+document.getElementById('Pagego').value}"" />"
- End If
- %> </div>
- <div class="searchbox"><input type="text" id="keys" value="<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>" onFocus="if(this.value == '<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>'){this.value='';}" onBlur="if(this.value == ''){this.value='<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>';}" onKeyDown="if(event.keyCode==13){location.href='?Keys='+escape(document.getElementById('keys').value)}" /><input type="button" id="searchgo" value="go" onClick="location.href='?Keys='+escape(document.getElementById('keys').value)" /></div>
- <div class="postchkbox">
- <select id="chkact" name="chkact">
- <option value="1">请选择</option>
- <option value="-1">删除</option>
- </select>
- <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
- <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
- </div>
- </td>
- </tr>
- </tfoor>
- </table>
- </form>
- <%Rs.Close:Set Rs=Nothing:Set Rs1=Nothing:Conn.Close:Set Conn=Nothing%>
- </div>
- </body>
- </html>
|