请教管理大哥
<!--#include file="Connections.asp"--><%
Mobile=request("Mobile")
if Mobile="" then
response.write "<script>alert('参数错误');location.href='default.asp';</script>"
response.end
else
sql="delete * from cust where Mobile='"&Mobile&"'"
rs.open sql,conn,1,3
response.write "<script>alert('删除成功');window.close();</script>"
end if
%>
上面的代码只能删除一条记录,怎么循环删除多条查询出来的记录啊。