asp代码查询出错 对象被关闭时不允许操作 30
setrs=server.CreateObject("adodb.recordset")iflei=1thenrs.open"select*fromshopwheredi...
set rs=server.CreateObject("adodb.recordset")
if lei=1 then
rs.open "select * from shop where diqu like '%"&title&"%' order by time1 desc",conn,1,3
elseif lei=2 then
rs.open "select * from shop where mingcheng like '%"&title&"%' order by time1 desc",conn,1,3
end if
mingcheng=conn.execute("select * from shop where id="&rs("id"))(0)
diqu=conn.execute("select * from shop where id="&rs("id"))(0)(查询代码)
<% if rs.eof then ....%>字数原因,翻页的代码我就不贴了,查询结果正常,可一翻页就出错了,ADODB.Recordset 错误 '800a0e78' 对象关闭时,不允许操作。希望各位大侠帮忙解决下
set rs=server.CreateObject("adodb.recordset")
if lei=1 then
rs.open "select * from shop where diqu like '%"&title&"%' order by time1 desc",conn,1,3
elseif lei=2 then
rs.open "select * from shop where mingcheng like '%"&title&"%' order by time1 desc",conn,1,3
end if
(这个才是执行语句)
<% if rs.eof then %>翻页时这个代码出错,对象被关闭时,不允许操作,大家帮帮忙 展开
if lei=1 then
rs.open "select * from shop where diqu like '%"&title&"%' order by time1 desc",conn,1,3
elseif lei=2 then
rs.open "select * from shop where mingcheng like '%"&title&"%' order by time1 desc",conn,1,3
end if
mingcheng=conn.execute("select * from shop where id="&rs("id"))(0)
diqu=conn.execute("select * from shop where id="&rs("id"))(0)(查询代码)
<% if rs.eof then ....%>字数原因,翻页的代码我就不贴了,查询结果正常,可一翻页就出错了,ADODB.Recordset 错误 '800a0e78' 对象关闭时,不允许操作。希望各位大侠帮忙解决下
set rs=server.CreateObject("adodb.recordset")
if lei=1 then
rs.open "select * from shop where diqu like '%"&title&"%' order by time1 desc",conn,1,3
elseif lei=2 then
rs.open "select * from shop where mingcheng like '%"&title&"%' order by time1 desc",conn,1,3
end if
(这个才是执行语句)
<% if rs.eof then %>翻页时这个代码出错,对象被关闭时,不允许操作,大家帮帮忙 展开
5个回答
展开全部
如果lei不等于1或2时,rs.open就不会执行rs("id")就会出错。
所以要保证lei的值是1或2,要么就改代码
if(lei=1 or lei=2) then
mingcheng=conn.execute("select * from shop where id="&rs("id"))(0)
diqu=conn.execute("select * from shop where id="&rs("id"))(0)(查询代码)
end if
所以要保证lei的值是1或2,要么就改代码
if(lei=1 or lei=2) then
mingcheng=conn.execute("select * from shop where id="&rs("id"))(0)
diqu=conn.execute("select * from shop where id="&rs("id"))(0)(查询代码)
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
它 不是提示你了 对象关闭时不允许操作 估计是先把对象关闭了然后下面又调用 所以会出现这个问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
同意把rs.close 删除掉!
你肯定是在前面分页代码后面用了rs.close关闭了对象。
你肯定是在前面分页代码后面用了rs.close关闭了对象。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你看看错误行引用的是什么对象。
比如rs对象,前面不能有rs.close的操作。
也可以在链接数据时候加入容错代码来完成。
比如rs对象,前面不能有rs.close的操作。
也可以在链接数据时候加入容错代码来完成。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询