下拉框取值关键代码:
查询关键代码如下:
<%
nowbigclass=request("bigclass")
nowsmallclass=request("smallclass")
sql="select * from produit where 1=1"
if nowbigclass<>"" then
sql=sql&" and id_bigclass="&nowbigclass
end if
if nowsmallclass<>"" then
sql=sql&" and id_smallclass="&nowsmallclass
end if
set rs_produit =server.createobject("ADODB.RecordSet")
rs_produit.open sql,conn,1,3
%>