popegroupadd.jsp~32~
上传用户: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 sql = "select * from popedom";
  18. String[][] pope = dbc.getArray(sql);
  19. %>
  20. <form name="form1" method="post" action="popegroupAddAction.do">
  21.   <p>权限组名
  22.     <input type="text" name="pgname">
  23. </p>
  24.   <p>
  25.   权限
  26.   </p>
  27.   <table width="90%" border="1">
  28.     <tr>
  29.       <td>&nbsp;</td>
  30.       <td>权限编号</td>
  31.       <td>权限说明</td>
  32.       <td>权限类型</td>
  33.       <td>权限字符串</td>
  34.     </tr>
  35.   <%
  36.   int j = 0;
  37.   for(int i = 0; i < pope.length; i++){
  38.     j++;
  39.     %>
  40.     <tr>
  41.       <td><input type="checkbox" name="id<%=i%>" value="<%=pope[i][2]%>"/></td>
  42.       <td><%=pope[i][2]%></td>
  43.       <td><%=pope[i][1] %></td>
  44.       <td><%=pope[i][3] %></td>
  45.       <td><%=pope[i][0] %></td>
  46.     </tr>
  47.     <%
  48.     }
  49.     %>
  50.     <tr>
  51.       <td><input type="hidden" value="<%=j%>" name="num" /></td>
  52.       <td>&nbsp;</td>
  53.       <td>&nbsp;</td>
  54.       <td>&nbsp;</td>
  55.       <td>&nbsp;</td>
  56.     </tr>
  57.   </table>
  58.   <p>
  59.     <input type="submit" name="Submit" value="提交">
  60.   </p>
  61. </form>
  62. <p>&nbsp;</p>
  63. </body>
  64. </html>