📄 pingpaimanage.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 "<p align=center><font color=red>您没有此项目管理权限!</font></p>"
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-Type" content="text/html; charset=gb2312">
<link href="../css/admin.css" rel="stylesheet" type="text/css">
</head>
<body>
<table class="tableBorder" width="90%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF">
<form method="post" action="pingpaiset.asp?action=update">
<tr>
<td colspan="5" align="center" background="../images/admin_bg_1.gif"><b><font color="#ffffff">品牌设置</font></b></td>
</tr>
<tr align=center bgcolor=#E8F1FF>
<td width="20%">序号</td>
<td width="20%">品牌名称</td>
<td width="20%">是否推荐</td>
<td width="20%">排序<br>(必填项,数字)</td>
<td width="20%">删除</td>
</tr>
<%
Set rs = Server.CreateObject("ADODB.Recordset")
rs.open "SELECT * From pingpai order by pingpaiorder",conn,1,1
if rs.recordcount=0 then
%>
<tr>
<td colspan="5" height=25 align="center" width="100%" bgcolor=#E8F1FF> 还没有添加品牌 </td>
</tr>
<%
else
do while not rs.eof
%>
<tr bgcolor=#E8F1FF>
<td align=center><%=rs("ID")%></td>
<td align=center>
<input type="hidden" name="pingpaiid" value="<%=rs("id")%>">
<input class=text type="text" name="pingpainame" size="10" value="<%=trim(rs("pingpainame"))%>">
</td>
<td align=center>
<select class=text name="tuijian" size="1">
<option value="1" <%if rs("tuijian")=1 then %>selected<%end if%>>推荐</option>
<option value="0" <%if rs("tuijian")=0 then %>selected<%end if%>>不推荐</option>
</select>
</td>
<td align=center>
<input class=text type="text" name="pingpaiorder" size="10" value="<%=rs("pingpaiorder")%>" ONKEYPRESS="event.returnValue=IsDigit();" >
</td>
<td align=center>
<a href="pingpaikill.asp?pingpaiid=<%=rs("id")%>">删除</a>
</td>
</tr>
<%
rs.MoveNext
Loop
%>
<tr>
<td colspan="5" bgcolor=#E8F1FF align="center" width="100%">
<input type="submit" name="Submit2" value="保存修改" style="font-family: 宋体; font-size: 9pt">
<input type="reset" value="重新设定" style="font-family: 宋体; font-size: 9pt" name="重置" >
</td>
</tr>
<%
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
</form>
</table><br>
<table class="tableBorder" width="90%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF">
<form method="post" action="pingpaiset.asp?action=add">
<tr>
<td colspan="5" align="center" background="../images/admin_bg_1.gif"><b><font color="#ffffff">添加品牌</font></b></td>
</tr>
<tr bgcolor=#E8F1FF>
<td width=20% align=center>添加品牌
</td>
<td width=20% align=center><input class=text type="text" name="pingpainame" size="10"></td>
<td width=20% align=center>
<select class=text name="tuijian" size="1">
<option value="1">推荐</option>
<option value="0">不推荐</option>
</select>
</td>
<td width=20% align=center><input class=text type="text" name="pingpaiorder" size="10" ONKEYPRESS="event.returnValue=IsDigit();"></td>
<td width=20% align=center><input type="submit" name="Submit2" value="添加" style="font-family: 宋体; font-size: 9pt"></td>
</tr>
</form>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -