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

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" import="officeol.mc.tools.*" %>
  2. <html>
  3. <head>
  4. <title>
  5. 天津市经贸委在线办公
  6. </title>
  7. </head>
  8. <body bgcolor="#ffffff">
  9. <h1>
  10. 权限组添加
  11. </h1>
  12. <%
  13. String message = request.getAttribute("msg")==null?"":request.getAttribute("msg").toString();
  14. out.print(message);
  15. DBConn dbc = new DBConn();
  16. String sql = "select * from popedom";
  17. String[][] pope = dbc.getArray(sql);
  18. %>
  19. <form name="form1" method="post" action="popegroupAddAction.do">
  20.   <p>权限组名
  21.     <input type="text" name="pgname">
  22. </p>
  23.   <p>
  24.   权限
  25.   </p>
  26.   <table width="90%" border="1">
  27.     <tr>
  28.       <td>&nbsp;</td>
  29.       <td>权限编号</td>
  30.       <td>权限说明</td>
  31.       <td>权限类型</td>
  32.       <td>权限字符串</td>
  33.     </tr>
  34.   <%
  35.   int j = 0;
  36.   for(int i = 0; i < pope.length; i++){
  37.     j++;
  38.     %>
  39.     <tr>
  40.       <td><input type="checkbox" name="id<%=i%>" value="<%=pope[i][2]%>"/></td>
  41.       <td><%=pope[i][2]%></td>
  42.       <td><%=pope[i][1] %></td>
  43.       <td><%=pope[i][3] %></td>
  44.       <td><%=pope[i][0] %></td>
  45.     </tr>
  46.     <%
  47.     }
  48.     %>
  49.     <tr>
  50.       <td><input type="hidden" value="<%=j%>" name="num" /></td>
  51.       <td>&nbsp;</td>
  52.       <td>&nbsp;</td>
  53.       <td>&nbsp;</td>
  54.       <td>&nbsp;</td>
  55.     </tr>
  56.   </table>
  57.   <p>
  58.     <input type="submit" name="Submit" value="提交">
  59.   </p>
  60. </form>
  61. <p>&nbsp;</p>
  62. </body>
  63. </html>