popegroupdelete.jsp~11~
上传用户: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 info = request.getAttribute("msg")==null?"":request.getAttribute("msg").toString();
  15. if(info!=null){
  16.   out.print(info+"<br />");
  17. }
  18. String pg = request.getParameter("pg");
  19. if(pg!=null){
  20.   DBConn dbc = new DBConn();
  21.   String sql1 = "SELECT pg.popeid,pg.popegroup FROM popedomgroup AS pg INNER JOIN popedom AS p ON pg.popeid = p.id AND pg.popegroup= '"+pg+"' GROUP BY pg.popeid,pg.popegroup";
  22.   String[][] mpope = dbc.getArray(sql1);
  23.   for(int i = 0; i < mpope.length; i++){
  24.     for(int j = 0; j < mpope[i].length; j++){
  25.       out.println(mpope[i][j]);
  26.     }
  27.   }
  28.   %>
  29.   <form action="popegroupdelAction.do" name="aa" method="POST">
  30.   <input type="hidden" value="<%=pg %>" name="pgname"/>
  31.   <input type="submit" value="submit" />
  32.   </form>
  33.   <%
  34.   }
  35. %>
  36. </body>
  37. </html>