popegroupmodify.jsp~30~
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:2k
源码类别:

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. <a href="index.jsp">返回首页</a><br />
  14. <%
  15. String info = request.getAttribute("msg")==null?"":request.getAttribute("msg").toString();
  16. if(info!=null){
  17.   out.print(info+"<br />");
  18. }
  19. String pg = request.getParameter("pg");
  20. if(pg!=null){
  21.   DBConn dbc = new DBConn();
  22.   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";
  23.   String[][] mpope = dbc.getArray(sql1);
  24.   for(int i = 0; i < mpope.length; i++){
  25.     for(int j = 0; j < mpope[i].length; j++){
  26.       out.println(mpope[i][j]);
  27.     }
  28.   }
  29.   String sql = "select * from [user]";
  30.   String[][] pope = dbc.getArray(sql);
  31.   %>
  32.   <form name="form1" method="post" action="popogroupModAction.do">
  33.   <p>
  34.   权限
  35.   </p>
  36.   <table width="90%" border="1">
  37.     <tr>
  38.       <td>&nbsp;</td>
  39.       <td>权限编号</td>
  40.       <td>权限说明</td>
  41.       <td>权限类型</td>
  42.       <td>权限字符串</td>
  43.     </tr>
  44.     <%
  45.     int k = 0;
  46.     for(int i = 0; i < pope.length; i++){
  47.       k++;
  48.       %>
  49.       <tr>
  50.         <td>
  51.         <%String check = "";
  52.         for(int x = 0; x < mpope.length; x++){
  53.           if(mpope[x][0].equals(pope[i][2])){
  54.             check = "checked="checked"";
  55.           }
  56.         }
  57.         %><input type="checkbox" name="id<%=i%>" value="<%=pope[i][2]%>" <%=check%> />
  58.           </td>
  59.           <td><%=pope[i][2]%></td>
  60.           <td><%=pope[i][1] %></td>
  61.           <td><%=pope[i][3] %></td>
  62.           <td><%=pope[i][0] %></td>
  63.       </tr>
  64.       <%
  65.       }
  66.       %>
  67.       <tr>
  68.         <td><input type="hidden" value="<%=k%>" name="num" /></td>
  69.           <td><input type="hidden" value="<%=pg%>" name="pgname"/></td>
  70.           <td>&nbsp;</td>
  71.           <td>&nbsp;</td>
  72.           <td>&nbsp;</td>
  73.       </tr>
  74.   </table>
  75.   <p>
  76.     <input type="submit" name="Submit" value="提交">
  77.   </p>
  78.   </form>
  79.   <%
  80.   }
  81. %>
  82. </body>
  83. </html>