userdelete.jsp~14~
上传用户: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. <h1>
  11. 删除用户
  12. </h1>
  13. <%
  14. DBConn dbc = new DBConn();
  15. Tool tl = new Tool();
  16. String un = request.getParameter("un");
  17. if(un!=null){
  18.   String sql = "delete from [user] where unmd5='"+un+"'";
  19.   dbc.executeUpdate(sql);
  20.   session.setAttribute("msg1","删除用户成功!");
  21.   response.sendRedirect("userset.jsp");
  22. }
  23. %>
  24. </body>
  25. </html>