userpopeadd.jsp~18~
上传用户: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. <script type="text/JavaScript">
  9. <!--
  10. function MM_jumpMenu(targ,selObj,restore){ //v3.0
  11.   eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  12.   if (restore) selObj.selectedIndex=0;
  13. }
  14. //-->
  15. </script>
  16. </head>
  17. <body bgcolor="#ffffff">
  18. <h1>
  19. 用户权限添加
  20. </h1>
  21. <p><a href="index.jsp">返回首页</a><br />
  22.   <%
  23. String message = request.getAttribute("msg")==null?"":request.getAttribute("msg").toString();
  24. out.print(message);
  25. DBConn dbc = new DBConn();
  26. String pgsql = "select popegroup from popedomgroup group by popegroup";
  27. String[][] pg = dbc.getArray(pgsql);
  28. String ugsql = "select usergroup from usergroup group by usergroup";
  29. String[][] ug = dbc.getArray(ugsql);
  30. if(pg!=null){
  31.   if(ug!=null){
  32.   }else{
  33.     out.print("没有用户组!");
  34.   }
  35. }else{
  36.   out.print("没有权限组!");
  37. }
  38. %>
  39. </p>
  40. <form name="form1" method="post" action="">
  41.   <table width="90%" border="1">
  42.     <tr>
  43.       <td>&nbsp;</td>
  44.       <td><select name="select">
  45.       </select>      </td>
  46.       <td>&nbsp;</td>
  47.     </tr>
  48.     <tr>
  49.       <td>&nbsp;</td>
  50.       <td><select name="select2">
  51.       </select>      </td>
  52.       <td>&nbsp;</td>
  53.     </tr>
  54.     <tr>
  55.       <td colspan="3"><input type="submit" name="Submit" value="提交"></td>
  56.     </tr>
  57.   </table>
  58. </form>
  59. <p>&nbsp;</p>
  60. </body>
  61. </html>