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