<%
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 行