officeequip_type_add.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:3k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ page import = "java.net.URLEncoder"%>
  3. <%@ page import = "java.util.*"%>
  4. <%@ page import = "cn.js.fan.util.*"%>
  5. <%@ page import = "com.redmoon.oa.officeequip.*"%>
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  7. <html>
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  10. <title>办公类别添加</title>
  11. <link href="../common.css" rel="stylesheet" type="text/css">
  12. <%@ include file="../inc/nocache.jsp"%>
  13. <script language="JavaScript" type="text/JavaScript">
  14. <!--
  15. //-->
  16. </script>
  17. <style type="text/css">
  18. <!--
  19. .style2 {font-size: 14px}
  20. .STYLE5 {color: #FF0000}
  21. .STYLE6 {color: #000000}
  22. -->
  23. </style>
  24. </head>
  25. <body background="" leftmargin="0" topmargin="5" marginwidth="0" marginheight="0">
  26. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  27. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  28. <%
  29. String priv="officeequip";
  30. if (!privilege.isUserPrivValid(request, priv)) {
  31. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  32. return;
  33. }
  34. String op = ParamUtil.get(request, "op");
  35. if (op.equals("add")) {
  36. OfficeTypeMgr btm = new OfficeTypeMgr();
  37. boolean re = false;
  38. try {
  39.   re = btm.create(request);
  40. }
  41. catch (ErrMsgException e) {
  42. out.print(StrUtil.Alert(e.getMessage()));
  43. }
  44. if (re)
  45. //out.print(StrUtil.Alert_Redirect("操作成功!", "officeequip_type_list.jsp"));
  46. %>
  47. <script>
  48. window.opener.location.reload();
  49. window.close();
  50. </script>
  51. <%}%>
  52. <table width="100%" height="89" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" class="tableframe">
  53.   <form id=form1 name="form1" action="?op=add" method=post>
  54.     <td valign="top">
  55.     <tr>
  56.       <td width="100%" class="right-title">&nbsp;办公用品类别添加</td>
  57.     </tr>
  58.     <tr>
  59.       <td height="26" align="left"><table width="368" border="0" align="left" cellpadding="3">
  60.         <tr align="left">
  61.           <td width="150"><span class="STYLE6">用品类别名称(<span class="STYLE5">*</span>)</span></td>
  62.           <td width="202"><input name="name" width="200"></td>
  63.         </tr>
  64.         <tr align="left">
  65.           <td>参考单位<span class="STYLE6">(<span class="STYLE5">*</span>)</span></td>
  66.           <td><input name="unit" width="200"></td>
  67.         </tr>
  68.         <tr align="left">
  69.           <td>备注</td>
  70.           <td><input name="abstracts" width="200"></td>
  71.         </tr>
  72.       </table>
  73.           
  74.         <p>&nbsp;</p>
  75.         <p align="center">&nbsp;
  76.               <input name="submit" type=submit class="button1" value="提  交">
  77.         </p>
  78.         </span></td>
  79.     </tr>
  80.   </form>
  81. </table>
  82. </body>
  83. </html>