userdeparadd.jsp~9~
上传用户: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. <form name="form1" method="post" action="deparAddAction.do">
  21.   <table width="90%" border="1">
  22.     <tr>
  23.       <td>用户部门名</td>
  24.       <td><input name="dpname" type="text" id="dpname"></td>
  25.       <td>&nbsp;</td>
  26.     </tr>
  27.     <tr>
  28.       <td>用户部门说明</td>
  29.       <td><textarea name="dpsm" cols="50" rows="5" id="dpsm"></textarea></td>
  30.       <td>&nbsp;</td>
  31.     </tr>
  32.     <tr>
  33.       <td colspan="3"><input type="submit" name="Submit" value="提交"></td>
  34.     </tr>
  35.   </table>
  36. </form>
  37. </body>
  38. </html>