📄 add_class_2.asp
字号:
<%@ language="vbscript"%>
<%response.Expires = 0%>
<!--#include file="conn.asp"-->
<%
if request.cookies("adminok")="" then
response.redirect "shop_login.htm"
end if
%>
<%
set rs=server.createobject("adodb.recordset")
sqltext2="select * from Class_1 "
rs.open sqltext2,conn,1,1
%>
<html>
<head>
<title>商品小类添加</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<STYLE type=text/css>.main {
FONT-SIZE: 12px
}
.main1 {
FONT-SIZE: 14px
}
.main2 {
FONT-SIZE: 16px
}
.main3 {
FONT-SIZE: 7px
}
.main4 {
FONT-SIZE: 10px
}
A:link {
COLOR: #ffffff; TEXT-DECORATION: none
}
A:visited {
COLOR: #ffffff; TEXT-DECORATION: none
}
A:active {
COLOR: #ff0000; TEXT-DECORATION: none
}
A:hover {
COLOR: #aa0000; TEXT-DECORATION: underline
}
</STYLE>
</head>
<body text="#000000">
<!--#include file="index_top.asp" -->
<p align="center"><br>
<br>
<br>
</p>
<p align="center"><FORM language=javascript name=FORM1
action=add_class_2_name.asp method=post>
<TABLE cellSpacing=1 cellPadding=4 width=258 bgColor=#416327 height="144">
<TBODY>
<TR vAlign=top bgColor=#e6e4c4>
<TD class=main1 colSpan=2 width="244" height="10" bgcolor="#6D8E4D"></TD></TR>
<TR vAlign=top bgColor=#e6e4c4>
<TD class=main1 colSpan=2 width="244" height="32">商品小类添加--(第一步)</TD></TR>
<TR bgColor=#e6e4c4>
<TD class=main1 width=102 bgColor=#6d8e4d height=25><SPAN
class=main1><font color="#FFFFFF">所属大类:</font></SPAN></TD>
<TD class=main1 width=130 height=25><select size="1" name="class_1_name" style="font-size: 14px">
<%While Not rs.EOF%>
<option><% =rs("Class_1_Name")%></option>
<%
rs.MoveNext
Wend
rs.close
conn.close
%>
</select> </TD></TR>
<TR vAlign=top bgColor=#e6e4c4>
<TD class=main1 colSpan=2 width="244" height="15"></TD></TR>
<TR bgColor=#e6e4c4>
<TD class=main1 colSpan=2 width="244" height="27">
<p align="center"><INPUT class=main type=submit size=3 value='下一步' name=Submit2>
</TD></TR>
<TR bgColor=#e6e4c4>
<TD class=main1 colSpan=2 width="244" height="4" bgcolor="#6D8E4D"></TD></TR></TBODY></TABLE>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -