Bdel.asp 528 B

12345678910111213141516
  1. <!--#include file="../bdcommx/connxyz.asp"-->
  2. <%call log_chk()%>
  3. <%idgroup=trim(request.form("idgroup"))
  4. if idgroup="" or isnull(idgroup) then
  5. response.write"<SCRIPT language=JavaScript>alert('无匹配!');"
  6. response.write"this.location.href='Bmag.asp';</SCRIPT>"
  7. response.end
  8. end if
  9. conn.execute("delete from bdmessage where mx_id in ("&idgroup&")")
  10. conn.close
  11. set conn=nothing
  12. response.write"<SCRIPT language=JavaScript>alert('删除成功!');"
  13. response.write"this.location.href='Bmag.asp';</SCRIPT>"
  14. response.end%>