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