📄 config8.asp
字号:
<!--#include file="../include/buyok_shop_30_conn.asp"-->
<!--#include file="checkadmin.asp"-->
<script language=javascript src=../include/mouse_on_title.js></script>
<%call checkmanage("01")%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="manage.css" type="text/css">
</head>
<BODY background="../images/admin/back.gif">
<%
rows=request("rows")
if rows="" or rows=0 then rows=10
action=request("ok")
if action="" then
Set rs = conn.Execute("select * from shopsetup")
%>
<table width="98%" border="1" style="border-collapse: collapse; border-style: dotted; border-width: 0px" bordercolor="#333333" cellspacing="0" cellpadding="2">
<form action=config8.asp method=post name=setup>
<tr class=backs><td colspan=2 class=td height=18>锁定IP设置 </td></tr>
<tr><td width=20% align=right>是否锁定IP </td><td > <input type="radio" name="lockip" value="1" <%if rs("lockip")="1" then%>checked<%end if%>>是 <input type="radio" name="lockip" value="0" <%if rs("lockip")<>"1" then%>checked<%end if%>>否</td></TR>
<tr><td width=20% align=right>锁定IP列表 </td><td><TEXTAREA alt="请输入限制访问本站的IP地址<br>如:205.158.40.15<br>每个IP地址占一行" NAME="IP" ROWS="<%=rows%>" COLS="25" style="overflow:auto;">
<%
if rs("IP")<>"" then response.write Replace(rs("IP"),"@",vbCRLF)
%>
</TEXTAREA></td></TR>
<tr><td colspan=2 width="568" ><INPUT name="ok" TYPE="hidden" value="ok"><INPUT name=action TYPE="submit" value="保存设置"></table>
</form>
<font color=red>※提示:</font><br>若输入IP地址的一部分,如:220.50,那么任何包含220.50的IP地址都将禁止访问本站。
<DIV style="position:absolute; top:150; left:400">
<table border=0 width=100><tr><td width=50% align=center>
<form action=config8.asp method=post name=setup2>
<INPUT name="rows" TYPE="hidden" value="<%=rows+10%>">
<input type=image src=../images/admin/jia.gif border=0 alt="增加编辑区域">
</form>
</td>
<td width=100 align=center>
<form action=config8.asp method=post name=setup3>
<INPUT name="rows" TYPE="hidden" value="<%=rows-10%>">
<input type=image src=../images/admin/jian.gif border=0 alt="减少编辑区域">
</form>
</td></tr></table>
</td></tr>
</table>
</DIV>
<%
rs.close
set rs=nothing
conn.close
set conn=nothing
end if
if action="ok" then
Set rs=Server.CreateObject("ADODB.Recordset")
sql="select * from shopsetup"
rs.open sql,conn,1,3
rs("lockip")=request.form("lockip")
ip=replace(request.form("ip")," ","")
ip=replace(ip,vbCRLF,"@")
for i=1 to 5
ip=replace(ip,"@@","@")
next
if right(ip,1)="@" then ip=left(ip,len(ip)-1)
if left(ip,1)="@" then ip=right(ip,len(ip)-1)
rs("IP")=ip
rs.update
url="config8.asp"
rs.close
set rs=nothing
conn.close
set conn=nothing
response.write "<script language='javascript'>"
response.write "alert('操作成功,您设置的信息已保存!');"
response.write "location.href='"&url&"';"
response.write "</script>"
end if
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -