userpopemodify.jsp~17~
上传用户: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. <%
  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=".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.         <%String tm = "";
  35.         for(int i = 0; i < pg.length; i++){
  36.           if(pg[i][0].equals(gm[0][2])){
  37.             tm = "selected="selected"";
  38.           }
  39.           %>
  40.           <option value="<%=pg[i][0]%>" <%=tm%> ><%=pg[i][0] %></option>
  41.           <%
  42.           }
  43.           %>
  44.           </select>    </td>
  45.           <td>&nbsp;</td>
  46.     </tr>
  47.     <tr>
  48.       <td>说明</td>
  49.       <td><textarea name="sm" cols="50" rows="5"><%=gm[0][3] %></textarea></td>
  50.       <td>&nbsp;</td>
  51.     </tr>
  52.     <tr>
  53.       <td colspan="3"><input type="submit" name="Submit" value="提交"></td>
  54.     </tr>
  55.   </table>
  56.   </form>
  57.   <p>&nbsp;</p>
  58.   <%
  59. }else{
  60.   out.print("没有权限组!");
  61. }
  62. %>
  63. </body>
  64. </html>