userdeparadd.jsp~10~
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" %>
  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 message = request.getAttribute("msg")==null?"":request.getAttribute("msg").toString();
  15. out.print(message);
  16. %>
  17. <a href="userdeparadd.jsp">用户部门添加</a>
  18. <a href="userdeparmod.jsp">用户部门修改</a>
  19. <a href="deparusermod.jsp">部门所属用户修改</a><br />
  20. <a href="userdeparadd.jsp">用户部门添加</a>
  21. <a href="userdeparmod.jsp">用户部门修改</a>
  22. <a href="deparusermod.jsp">部门所属用户修改</a><br />
  23. <form name="form1" method="post" action="deparAddAction.do">
  24.   <table width="90%" border="1">
  25.     <tr>
  26.       <td>用户部门名</td>
  27.       <td><input name="dpname" type="text" id="dpname"></td>
  28.       <td>&nbsp;</td>
  29.     </tr>
  30.     <tr>
  31.       <td>用户部门说明</td>
  32.       <td><textarea name="dpsm" cols="50" rows="5" id="dpsm"></textarea></td>
  33.       <td>&nbsp;</td>
  34.     </tr>
  35.     <tr>
  36.       <td colspan="3"><input type="submit" name="Submit" value="提交"></td>
  37.     </tr>
  38.   </table>
  39. </form>
  40. </body>
  41. </html>