deparuseradd.jsp~64~
上传用户: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. <p>
  14.   <%
  15. String message = request.getAttribute("msg")==null?"":request.getAttribute("msg").toString();
  16. out.print(message);
  17. DBConn dbc = new DBConn();
  18. String dm = request.getParameter("dep");
  19. String depsql = "select id,deparname from deparment where dnmd5 ='"+dm+"' ";
  20. out.print(depsql+"<br />");
  21. String[][] dep = dbc.getArray(depsql);
  22. String unsql = "select * from [user] where deparment = 0 ";
  23. out.print(unsql+"<br />");
  24. String[][] un = dbc.getArray(unsql);
  25. String usql = "select ud.userid,u.username from userdepar as ud inner join [user] as u on ud.userid = u.id where deparid = "+dep[0][0];
  26. out.print(usql+"<br />");
  27. String[][] user = dbc.getArray(usql);
  28. %>
  29. </p>
  30. <a href="index.jsp">返回首页</a>
  31. <form name="form1" method="post" action="deparuserAddAction.do">
  32.   <table width="90%" border="1">
  33.     <tr>
  34.       <td>部门</td>
  35.       <td>
  36.       <input type="hidden" name="dep" value="<%=dep[0][0] %>" />
  37.       <%=dep[0][1] %>
  38.             </td>
  39.       <td>&nbsp;</td>
  40.     </tr>
  41.     <tr>
  42.       <td colspan="3">部门用户</td>
  43.     </tr>
  44.     <%
  45.     int j = 0;
  46.     for(int i = 0; i < user.length; i++){
  47.       j++;
  48.       String check = "checked="checked"";
  49.       %>
  50.       <tr>
  51.         <td>
  52.           <input name="un<%=i%>" type="checkbox" value="<%=user[i][0] %>" <%=check%>/>
  53.         </td>
  54.         <td>
  55.           <%=user[i][1] %>
  56.         </td>
  57.         <td>&nbsp;</td>
  58.       </tr>
  59.       <%
  60.       }
  61.       for(int i = 0; i < un.length; i++){
  62.         j++;
  63.         %>
  64.         <tr>
  65.           <td>
  66.             <input name="un<%=j%>" type="checkbox" value="<%=un[i][0] %>"/>
  67.           </td>
  68.           <td>
  69.             <%=un[i][1] %>
  70.           </td>
  71.           <td>&nbsp;</td>
  72.         </tr>
  73.         <%
  74.         }
  75.         %>
  76.         <tr>
  77.           <td colspan="3">
  78.             <input type="hidden" value="<%=j%>" name="j" />
  79.             <input type="submit" name="Submit" value="提交">
  80.           </td>
  81.         </tr>
  82.   </table>
  83. </form>
  84. <p>&nbsp;</p>
  85. </body>
  86. </html>