一个RECORDSET实例不能多次用???
我建了一个RECORDSE实例
<% sql1="select * from xinxi where newsclass_id like'"&newsclass_id&"'
set rs1=server.createobject("adodb.recordset") rs1.open sql1,conn,3,3
...................................
然后我要加入分页所以还要一个SQL变量,
sql="select * from xinxi order by newsid desc"
rs1.open sql,conn,1,1
运行时,就报:
ADODB.Recordset 错误 '800a0e79'
对象打开时,操作不被允许。
请问大虾指点。