⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 product_info_search.asp

📁 多多网店系统v3.01 完全免费可用版-功能简介: 支持多模板皮肤色切换[8套] 支持按商品特性[推荐商品/特价商品/新品分类]浏览 支持按商品类别浏览 支持单件商品用支付宝交易按钮直接支付订
💻 ASP
字号:
<!--#include file="admin_check.asp"-->
<%dim dbpath
dbpath="../"
%>
<!--#include file="../Conn.asp"-->
<!--#include file="../include/MyRequest.asp"-->
<html>

<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>商品高级搜索</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>

<body>
<table cellspacing="1" cellpadding="4" width="100%" class="tableborder">
<tbody class="altbg2">
<form action="Product_Info_List.asp" method="get" name="form1">
    <tr>
		<td colspan="2" class="title">商品高级搜索</td>
	</tr>
	<tr>
		<td>商品名称:</td>
		<td><input type="text" name="KeyWord" size="20"></td>
	</tr>
	<tr>
		<td>所属类别:</td>
		<td><select name="cid">
            <option value="">所有类别下</option>
		    <%
		     sql="select cid,product_class_name from product_class order by cid desc"
		     set rs=conn.execute (sql)
		     set cid=rs(0)
		     set product_class_name=rs(1)
		     do while not rs.eof
		    %>
		    <option value="<%=cid%>"><%=product_class_name%></option>
		    <%
		     rs.movenext
		     loop
		     rs.close
		     set rs=nothing
		    %>
		 </select></td>
	</tr>
	<tr>
		<td>商品内容含:</td>
		<td><input type="text" name="product_info_Detail" size="20"></td>
	</tr>
	<tr>
		<td>本站价格范围:</td>
		<td><input type="text" name="prod_info_PriceSMin" size="6">元(小值)&nbsp; 至 
		<input type="text" name="prod_info_PriceSMax" size="6">元(大值)</td>
	</tr>
	<tr>
		<td>搜索结果排序:</td>
		<td><input type="radio" CHECKED value="1" name="sort">时间降 
		<input type="radio" value="2" name="sort">时间升 
		<input type="radio" value="3" name="sort">编号降 
		<input type="radio" value="4" name="sort">编号升 
		<input type="radio" value="5" name="sort">商品名称 
		<input type="radio" value="6" name="sort">浏览次数</td>
	</tr>
	<tr>
		<td> </td>
		<td><input type="submit" value="  搜  索  " name="B1">&nbsp;&nbsp;&nbsp;
			<input type="reset" value="重置" name="B2">
		</td>
	</tr>
</form>
</tbody>
</table>
</body>

</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -