为了账号安全,请及时绑定邮箱和手机立即绑定

如下所示,请问这段代码该怎么改?才能实现我的要求呢?

如下所示,请问这段代码该怎么改?才能实现我的要求呢?

拉风的咖菲猫 2022-04-07 15:11:55
<!--#include file="conn.asp" --><%if request.querystring("act")="cha" Thenexec="select * from juanban where 材质 like '"&request.form("caizhi")&"' or 规格 like '"&request.form("guige")&"' or 产地 like '"&request.form("chandi")&"' or 货源 like '"&request.form("huoyuan")&"'"elseexec="select * from juanban where 1=1"end ifset rs2=server.createobject("adodb.recordset")rs2.open exec,conn,1,1do while not rs2.eof %>如图要求某个条件为空时不影响其他的,可以单条件搜索,也可以多条件搜索,上面这段代码怎么改?
查看完整描述

3 回答

?
胡子哥哥

TA贡献1825条经验 获得超6个赞

asp多条件符合查询,参考代码如下:
<%
dim qy
qy=0
if request.form("stu_name")<>"" then '第一个条件表单传递的数据
str="stu_name='"&request.form("stu_name")&"'"
qy=qy+1
end if

if request.form("stu_num")<>"" then '第二个条件表单传递的数据
if qy=0 then
str=str&"stu_number='"&request.form("stu_num")&"'"
else
str=str&"and stu_number='"&request.form("stu_num")&"'"
end if
qy=qy+1
end if

if request.form("stu_xibie")<>"" then '第三个条件表单传递的数据
if qy=0 then
str=str&"stu_xibie='"&request.form("stu_xibie")&"'"
else
str=str&"and stu_xibie='"&request.form("stu_xibie")&"'"
end if
qy=qy+1
end if

if request.form("stu_class")<>"" then
if qy=0 then
str=str&"stu_class='"&request.form("stu_class")&"'"
else
str=str&"and stu_class='"&request.form("stu_class")&"'"
end if
qy=qy+1
end if

if request.form("stu_year")<>"" then
if qy=0 then
str=str&"stu_year='"&request.form("stu_year")&"'"
else
str=str&"and stu_year='"&request.form("stu_year")&"'"
end if
qy=qy+1
end if
sql="select * from [students] where "&str
Set rs=Conn.Execute(sql) '执行sql语句
%>



查看完整回答
反对 回复 2022-04-11
?
慕勒3428872

TA贡献1848条经验 获得超6个赞

代码我就不写啦,给你思路,自己想出来的会一直记得,别人代码看一遍过几天就会忘记。
首先接收request传递参数,分开接收,在判断接收的后赋值的变量是否为空,
例如:

接收a=request.form(“a”)
b=request.form(“b”)
判断if a=“”and b<>"" then
执行条件查询(这里只需要查询a)
以此类推





查看完整回答
反对 回复 2022-04-11
?
慕斯王

TA贡献1864条经验 获得超2个赞

<%
if request.querystring("act")="cha" Then
caizhi=request("caizhi")
guige=request("guige")
chandi=request("chandi")
huoyuan=request("huoyuan")
if caizhi="" and guige="" and chandi="" and huoyuan="" then
exec="select * from juanban where 1=1"
else
exec="select * from juanban where 材质 like '"&caizhi&"' or 规格 like '"&guige&"' or 产地 like '"&chandi&"' or 货源 like '"&huoyuan&"'"
end if
end if
set rs2=server.createobject("adodb.recordset")
rs2.open exec,conn,1,1
do while not rs2.eof %>



查看完整回答
反对 回复 2022-04-11
  • 3 回答
  • 0 关注
  • 156 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信