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

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.address.*"%>
  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 op = ParamUtil.get(request, "op");
  30. if (op.equals("modify")) {
  31. AddressTypeMgr atm = new AddressTypeMgr();
  32. boolean re = false;
  33. try {
  34. re = atm.modify(request);
  35. }
  36. catch (ErrMsgException e) {
  37. out.print(StrUtil.Alert(e.getMessage()));
  38. }
  39. if (re) {
  40.  out.print(StrUtil.Alert("编辑成功!"));
  41. }
  42. }
  43. int id = ParamUtil.getInt(request, "id");
  44. AddressTypeDb atd = new AddressTypeDb();
  45. atd = atd.getAddressTypeDb(id);
  46. %>
  47. <table width="494" height="89" border="0" align="center" cellpadding="0" cellspacing="0" class="tableframe">
  48.   <tr> 
  49.     <td height="23" valign="bottom" background="../images/top-right.gif" class="right-title">&nbsp;<span> 通迅录分组编辑 </span></td>
  50.   </tr>
  51.   <tr> 
  52.     <td valign="top">
  53. <table width="100%"  border="0" cellspacing="0" cellpadding="0">
  54.   <form action="?op=modify" method=post> 
  55.       <tr>
  56.         <td height="69" align="center">名称<span class="STYLE6">(<span class="STYLE5">*</span>)</span>:
  57.   <input name="name" value="<%=atd.getName()%>">
  58.   <input name="id" value="<%=id%>" type=hidden>
  59.   &nbsp;
  60.   <input name="submit" type=submit value="确定">&nbsp;</td>
  61.       </tr>
  62.   </form>
  63.     </table></td>
  64.   </tr>
  65. </table>
  66. <br>
  67. <br>
  68. </body>
  69. </html>