📄 inc_search.asp
字号:
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="162" height="32" background="images/jj2.jpg"> 产品搜索</td>
</tr>
</table>
<table width="162" border="0" cellspacing="0" cellpadding="0">
<form name="search" action="product_search.asp" method="get" onsubmit="if (this.title.value == '请填写产品名称') this.title.value = '';">
<tr>
<td height="10" align="center"> </td>
</tr>
<tr>
<td height="25" align="center">
<select name="parentcode">
<option value="0" selected>请选择产品种类</option>
<%
sql = "select classname,classcode from product_class where parentcode = '0' order by sortnum"
rs.Open sql,cn,0,1,1
do while not rs.EOF
%>
<option value="<%=rs("classcode")%>"><%=rs("classname")%></option>
<%
rs.MoveNext
loop
rs.Close
%>
</select>
</td>
</tr>
<tr>
<td height="25" align="center">
<select name="price">
<option value="0" selected>请选择价格区间</option>
<option value="1">1000元以下</option>
<option value="2">1000-2000元</option>
<option value="3">2000-3000元</option>
<option value="4">3000-4000元</option>
<option value="5">4000-5000元</option>
<option value="6">5000元以上</option>
</select>
</td>
</tr>
<tr>
<td height="25" align="center"><input name="title" type="text" value="请填写产品名称" size="15" maxlength="20" onfocus="if (this.value=='请填写产品名称') this.value='';"></td>
</tr>
<tr>
<td align="right"><input type="image" src="images/ee.jpg" width="70" height="23" border="0"></td>
</tr>
<tr>
<td align="center"></td>
</tr>
<tr>
<td align="center"></td>
</tr>
<tr>
<td align="right"></td>
</tr>
</form>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -