| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 222 人关注过本帖
标题:[求助]一个asp的问题
取消只看楼主 加入收藏
读书有害健康
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2007-11-4
收藏
 问题点数:0 回复次数:0 
[求助]一个asp的问题

<%
set rs = server.CreateObject ("adodb.recordset")
sql = "select top 5 * from news where pic<>'' and lm<>'13'"

lm里面有记录,但
错误类型:
ADODB.Field (0x800A0BCD)
BOF 或 EOF 中有一个是“真”,或者当前的记录已被删除,所需的操作要求一个当前的记录。
/index.asp, 第 223 行
如果改成lm里面没有的记录,如:select top 5 * from news where pic<>'' and lm<>'100'反而正常。 这是怎么回事?
问题补充:<%
set rs = server.CreateObject ("adodb.recordset")
if not (rs.eof and rs.bof) then
sql = "select top 5 * from news where pic<>'' and lm<>'13'"
rs.open sql,conn,1,1
pic1=rs("pic")
link1=rs("url")
text1=rs("title")
rs.movenext
pic2=rs("pic")
link2=rs("url")
text2=rs("title")
rs.movenext
pic3=rs("pic")
link3=rs("url")
text3=rs("title")
rs.movenext
pic4=rs("pic")
link4=rs("url")
text4=rs("title")
rs.movenext
pic5=rs("pic")
link5=rs("url")
text5=rs("title")
rs.close
set rs=nothing
conn.close
set conn=nothing
end if
%>
错误类型:
ADODB.Recordset (0x800A0E78)
对象关闭时,不允许操作。
/index.asp, 第 204 行

搜索更多相关主题的帖子: asp 
2007-11-04 19:56
快速回复:[求助]一个asp的问题
数据加载中...
 
   



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

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