userdepardel.jsp~9~
上传用户: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. String message = request.getAttribute("msg")==null?"":request.getAttribute("msg").toString();
  15. out.print(message);
  16. DBConn dbc = new DBConn();
  17. String dnmd5 = request.getParameter("dpm");
  18. String delsql = "delete from deparment where dnmd5 = '"+dnmd5+"'";
  19. dbc.executeUpdate(delsql);
  20. session.setAttribute("test","删除部门成功!");
  21. %>
  22. </body>
  23. </html>