asp代码问题,谁帮我解释一下这段代码的意思和里面exec=""与exec=exec&'''的用法
<%exec="select*fromproductwhere1=1"setrs=server.createobject("adodb.recordset")ifmain...
<%
exec="select * from product where 1=1"
set rs=server.createobject("adodb.recordset")
if main_id<>"" then
exec=exec&" and main_id="&main_id
end if
if sub_id<>"" then
exec=exec&" and sub_id="&sub_id
end if
exec=exec&" order by id desc"
rs.open exec,conn,1,1
if rs.eof then
response.Write "此分类暂无产品!"
else
rs.PageSize =8 '每页记录条数
代码有错误吗,错在哪里 展开
exec="select * from product where 1=1"
set rs=server.createobject("adodb.recordset")
if main_id<>"" then
exec=exec&" and main_id="&main_id
end if
if sub_id<>"" then
exec=exec&" and sub_id="&sub_id
end if
exec=exec&" order by id desc"
rs.open exec,conn,1,1
if rs.eof then
response.Write "此分类暂无产品!"
else
rs.PageSize =8 '每页记录条数
代码有错误吗,错在哪里 展开
展开全部
exec是你定义的一个记录变量,把SQL查询语句暂时存放在这个变量中,exec=exec&这是起一个连接作用,就是把exec之前的语句和现在的串联起来!
比如你当main_id和sub_id不为空时,完整的语句应该是这样:
exec="select * from product where 1=1 and main_id="&main_id&" and sub_id="&sub_id&" order by id desc"
至于你说的代码有错误,光从这段语句是是看不出来哪里有问题,你在rs.open exec,conn,1,1这一名之前加response.write exec然后运行一下把产生的SQL语句拷到数据库查询分析器里执行一下看有没有问题,主要检查下字段有没有写错、字段类型等,或者你把信息信息发我HI上帮你处理!
比如你当main_id和sub_id不为空时,完整的语句应该是这样:
exec="select * from product where 1=1 and main_id="&main_id&" and sub_id="&sub_id&" order by id desc"
至于你说的代码有错误,光从这段语句是是看不出来哪里有问题,你在rs.open exec,conn,1,1这一名之前加response.write exec然后运行一下把产生的SQL语句拷到数据库查询分析器里执行一下看有没有问题,主要检查下字段有没有写错、字段类型等,或者你把信息信息发我HI上帮你处理!
展开全部
以上代码是根据你的条件进行查询(筛选)产品。
exec="select * from product where 1=1"
这句里的select * from product where 1=1是查询全部产品
exec=exec&'''这句是根据你的条件进行判断
&是字符串连接符
exec="select * from product where 1=1"
这句里的select * from product where 1=1是查询全部产品
exec=exec&'''这句是根据你的条件进行判断
&是字符串连接符
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
exec 是一个变量名,存储的是一段SQL语句
exec& 是用前段SQL语句连上后段语句,& 在ASP里是连接符的意思
exec=exec&"................." 意思是 把 exec连上“.........”然后重新付值给exec
exec& 是用前段SQL语句连上后段语句,& 在ASP里是连接符的意思
exec=exec&"................." 意思是 把 exec连上“.........”然后重新付值给exec
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询