标题:[求助]怎么总是报错?
只看楼主
madpbpl
Rank: 4
等 级:贵宾
威 望:11
帖 子:2876
专家分:244
注 册:2007-4-5
得分:0 
sqltest="select *from Product"
if request("Product_Name")<>"" then
sqltext=sqltext&"where Product_Name like'%"&request("Product_Name")&"%'"
else
sqltext=sqltext&"where Product_Name like'%"&""&"%'"
end if
改成
sqltext="select * from Product" '*后加一个空格
if request("Product_Name")<>"" then
sqltext=sqltext&" where Product_Name like'%"&request("Product_Name")&"%'" 'where前面加一个空格
else
sqltext=sqltext&" where Product_Name like'%"&""&"%'" 'where前面加一个空格
end if
2007-08-11 11:16
可见光
Rank: 1
等 级:新手上路
帖 子:143
专家分:0
注 册:2007-6-15
得分:0 
madpbpl  谢谢啊 一定向大家好好学习 fighting
2007-08-11 11:24



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-161775-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.161419 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved