usergroupdel.jsp~5~
上传用户: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 ugmd5 = request.getParameter("ug");
  18. String dsql = "delete from usergroup where ugmd5 = '"+ugmd5+"'";
  19. out.print(dsql);
  20. %>
  21. </body>
  22. </html>