popegroupdel.jsp~7~
上传用户: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. DBConn dbc = new DBConn();
  19. String sql = "SELECT popegroup FROM popedomgroup WHERE shifoudel<>0 GROUP BY popegroup ";
  20. String[][] pg = dbc.getArray(sql);
  21. for(int i = 0; i < pg.length; i++){
  22.   for(int j = 0; j < pg[i].length; j++){
  23.     out.print("<a href='popegroupdelete.jsp?pg="+pg[i][j]+"'>删除权限组"+pg[i][j]+"</a><br />");
  24.   }
  25. }
  26. %>
  27. </body>
  28. </html>