📄 goods_add.asp
字号:
<!--#Include file="conn.asp"-->
<!--#include file="Cookies.asp"-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
<!--
.style1 {
font-family: "华文行楷";
font-size: 24px;
color: #0000FF;
}
-->
</style>
</head>
<body>
<form action="addgoods.asp" method="post" name="addgoods">
<div align="center">
<table width="530" height="403" border="1" bordercolor="#FF0000" bgcolor="#CCCC99">
<tr>
<th width="202" rowspan="2" scope="row"><p> </p>
<p>图象路径
<input type="text" name="path" height="20" >
</p></th>
<td width="312" height="17"> </td>
</tr>
<tr>
<td height="46"><span class="style7">
<span class="style1">产品名称: </span>
<input type="text" name="name" height="20" >
</span> </td>
</tr>
<tr>
<th height="34" scope="row"><p class="style4">现有存货量</p> </th>
<td><input type="text" name="inventory"height="20" ></td>
</tr>
<tr>
<th height="28" scope="row"><span class="style4"> 一级分类</span></th>
<td>
<select name="class1" id="class1" >
<%Set rs=Server.CreateObject("ADODB.Recordset")
sql="select * from class1 order by taxis desc"
rs.open sql,conn,1
do while not rs.eof
%>
<option value="<%=rs(0)%>"><%=rs(1)%></option>
<%
rs.movenext
loop
rs.close
%>
</select></td>
</tr>
<tr>
<th height="29" scope="row"><span class="style4">二级分类</span></th>
<td scope="row"><input type="text" name="class2"height="20" > </td>
</tr>
<tr>
<th height="29" scope="row"><span class="style4">参考价格</span></th>
<td><input type="text" name="price"height="20" ></td>
</tr>
<tr>
<th height="30" scope="row"><span class="style4">打折信息 </span></th>
<td><input type="text" name="discount"height="20"></td>
</tr>
<tr>
<th height="28" scope="row"><span class="style4">面向地区</span></th>
<td><input type="text" name="area"height="20" ></td>
</tr>
<tr>
<th height="133" scope="row"><span class="style5">产品简介</span></th>
<td><textarea name="introduce" cols="40" rows="8" ></textarea></td>
</tr>
</table>
<p> </p>
<table width="241" border="0">
<tr>
<th width="12" scope="col"> </th>
<th width="104" scope="col"><input type="submit" name="Submit" value="提交"></th>
<th width="103" scope="col"><input type="reset" name="Submit2" value="重置"></th>
</tr>
</table>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -