Set Rs=Server.CreateObject("Adodb.Recordset")
sql="updata xuesheng set name='"&a(1,0)&"'where id=1"
Rs.open sql,conn,1,1
Rs.Close
Set Rs=Nothing
Conn.Close
Set Conn=Nothing
运行时会报错
关闭对象时,不允许操作.
如果在Rs.open sql,conn,1,1与
Rs.Close中间插入一句response.redirect("index.asp")时
执行是对的
參考答案:Rs.open sql,conn,1,1 只读属性,不能更新记录集。
如果没有并发控制问题,一般可以用乐观锁定 Rs.open sql,conn,1,3
Rs.Close中间插入一句response.redirect("index.asp")时
执行当然是可以的,因为页面跳出到index.asp页。 updata更新没有执行。