ASP表单批量验证,高手来
发布网友
发布时间:2022-05-02 05:29
我来回答
共2个回答
热心网友
时间:2023-10-09 16:21
<%
bcbh=request("bcbh")
hpname=request("hpname")
colorno=request("colorno")
matou=request("matou")
set rs=server.CreateObject("adodb.recordset")
sql="select * from 表 where 1=1 "
if request("bcbh")<>"" then
sql=sql&"and bcbh="&bcbh&" " '如果不是数字型那就换成'"&bcbh&"' 如是模糊模询就是 like '%"&bcbh&"%'
end if
if request("hpname")<>"" then
sql=sql&"and hpname='"&hpname&"' " '如是模糊模询就是 like '%"&hpname&"%'
end if
if request("colorno")<>"" then
sql=sql&"and colorno='"&colorno&"' " '如是模糊模询就是 like '%"&colorno&"%'
end if
if request("matou")<>"" then
sql=sql&"and matou='"&matou&"' " '如是模糊模询就是 like '%"&matou&"%'
end if
你真接接收值,这样就行了
%>
热心网友
时间:2023-10-09 16:22
先做一个表单验证函数,再用循环数组的方法插入和这个函数调用
也就是说,循环执行一个个验证一个个插入
由于不知道你要验证什么项目,这里也就给不出方案