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