您的位置:首页 > 编程语言 > ASP

asp+vbscript中数据删除的问题,未解决

2009-11-19 14:26 190 查看
使用

sqlStr="delete from admin where id="&id
conn.execute(sqlStr)
response.Write("aa")

可以执行到 response.Write("aa")

而使用

sqlStr="delete from admin where id="&id
rs.open sqlStr,conn,1,3
rs.close
response.Write("aa")

不能执行到response.Write("aa")

为什么?
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐