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

OA系统

开发平台:

Java

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