userdelete.jsp~10~
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" import="officeol.mc.tools.*" %>
  2. <html>
  3. <head>
  4. <title>
  5. 天津市经贸委在线办公
  6. </title>
  7. </head>
  8. <body bgcolor="#ffffff">
  9. <h1>
  10. 删除用户
  11. </h1>
  12. <%
  13. DBConn dbc = new DBConn();
  14. Tool tl = new Tool();
  15. String un = request.getParameter("un");
  16. if(un!=null){
  17.   String sql = "delete from [user] where unmd5='"+un+"'";
  18.   dbc.executeUpdate(sql);
  19.   session.setAttribute("msg1","删除用户"+un+"成功!");
  20.   response.sendRedirect("userset.jsp");
  21. }
  22. %>
  23. </body>
  24. </html>