📄 youbianmanage.asp
字号:
<!--#include file="conn.asp"-->
<%if session("admin")="" then
response.Write "<script language='javascript'>alert('网络超时或您还没有登陆!');window.location.href='login.asp';</script>"
response.End
else
if session("flag")>1 then
response.Write "<div align=center><font size=80 color=red><b>您没有此项目管理权限!</b></font></div>"
response.End
end if
end if
%>
<html>
<head>
<title>邮编管理</title>
<script>
function IsDigit()
{
return ((event.keyCode >= 48) && (event.keyCode <= 57));
}
</script>
<meta http-equiv="目录类型" content="文本/html; 字符集=gb2312">
<link href="../css.css" rel="stylesheet" type="text/css">
</head>
<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
<center>
<table border="0" width="95%" cellpadding="1" cellspacing="1" style="border-collapse: collapse" bgcolor="#CCCCCC" >
<form method="post" action="youbianset.asp?action=update">
<tr height=25>
<td colspan="8" align="center" bgcolor="f1f1f1"><font color="red">“送货上门”邮编设置</font></td>
</tr>
<tr align=center height=25>
<td bgcolor="f1f1f1">序号</td>
<td bgcolor="f1f1f1">地点</td>
<td bgcolor="f1f1f1">邮编</td>
<td bgcolor="f1f1f1">删除</td>
</tr>
<%
Set rs = Server.CreateObject("ADODB.Recordset")
rs.open "SELECT * From shop_youbian order by id",conn,1,1
if rs.recordcount=0 then
%>
<tr bgcolor="#FFFFFF">
<td colspan="8" height=25 align="center" width="100%"> 还没有添加邮编</td>
</tr>
<%
else
do while not rs.eof
%>
<tr height=25 bgcolor="#FFFFFF">
<td align=center><%=rs("ID")%></td>
<td align=center>
<input type="hidden" name="id" value="<%=rs("id")%>">
<input class="wenbenkuang" type="text" name="dizhiname" size="16" value="<%=trim(rs("dizhiname"))%>">
</td>
<td align=center>
<input class="wenbenkuang" type="text" name="youbian" size="10" value="<%=rs("youbian")%>" ONKEYPRESS="event.returnValue=IsDigit();" >
</td>
<td align=center> <a href="youbiankill.asp?id=<%=rs("id")%>">删除</a> </td>
</tr>
<%
rs.MoveNext
Loop
%>
<tr bgcolor="#FFFFFF">
<td colspan="8" height=25 align="center" width="100%">
<input type="submit" name="Submit2" value="保存修改" class="go-wenbenkuang">
<input type="reset" value="重新设定" class="go-wenbenkuang" name="重置" >
</td>
</tr>
<%
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
</form>
<form method="post" action="youbianset.asp?action=add">
<tr height=25 bgcolor="#FFFFFF">
<td align=center>添加邮编</td>
<td align=center>
<input class="wenbenkuang" type="text" name="dizhiname" size="16">
</td>
<td align=center>
<input class="wenbenkuang" type="text" name="youbian" size="10" ONKEYPRESS="event.returnValue=IsDigit();">
</td>
<td align=center colspan="2">
<input type="submit" name="Submit2" value="添加" class="go-wenbenkuang">
</td>
</tr>
</form>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -