asp 从数据库读取的记录,全选和删除操作问题,请高手帮助!
发布网友
发布时间:2024-01-13 08:53
我来回答
共1个回答
热心网友
时间:2024-04-21 08:56
在user_delall.asp中
<!--#include file="conn.asp"-->
<%
ids=request.form("ids")
ids=replace(ids,", ",",") rem 去除空格
sql="delete mysf_user where id>0 and id in("&ids&")"
set rs=conn.execute(sql) 'conn是你的链接字串
set rs=nothing
response.write "<script>alert('用户删除成功!');window.location.href='index.asp';</script>"
%>
附注:你这个方法我没有用过,你在你的rs.delete后加条rs.update看看,应该也行