userpopemodify.jsp~13~
上传用户: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 ugmd5 =request.getParameter("ug");
  15. String sql = "select * from groupmanage where ugmd5 ='"+ugmd5+"'";
  16. DBConn dbc = new DBConn();
  17. String[][] gm = dbc.getArray(sql);
  18. String pgsql = "select popegroup from popedomgroup group by popegroup";
  19. String[][] pg = dbc.getArray(pgsql);
  20. if(pg!=null){
  21.   %>
  22.   <form name="form1" method="post" action="userPopeAddAction.do">
  23.   <table width="90%" border="1">
  24.     <tr>
  25.       <td>用户组</td>
  26.       <td>
  27.         <input type="text" value="<%=gm[0][0]%>" disabled="disabled" name="ug"/>      </td>
  28.           <td>&nbsp;</td>
  29.     </tr>
  30.     <tr>
  31.       <td>权限组</td>
  32.       <td>
  33.         <select name="pg">
  34.         <%
  35.         for(int i = 0; i < pg.length; i++){
  36.           %>
  37.           <option value="<%=pg[i][0]%>"><%=pg[i][0] %></option>
  38.           <%
  39.           }
  40.           %>
  41.           </select>    </td>
  42.           <td>&nbsp;</td>
  43.     </tr>
  44.     <tr>
  45.       <td>说明</td>
  46.       <td><textarea name="sm" cols="50" rows="5"></textarea></td>
  47.       <td>&nbsp;</td>
  48.     </tr>
  49.     <tr>
  50.       <td colspan="3"><input type="submit" name="Submit" value="提交"></td>
  51.     </tr>
  52.   </table>
  53.   </form>
  54.   <p>&nbsp;</p>
  55.   <%
  56. }else{
  57.   out.print("没有权限组!");
  58. }
  59. %>
  60. </body>
  61. </html>