vehicle_type_edit.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 = "cn.js.fan.web.*"%>
  6. <%@ page import = "com.redmoon.oa.vehicle.*"%>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8. <html xmlns="http://www.w3.org/1999/xhtml">
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  11. <link href="../common.css" rel="stylesheet" type="text/css">
  12. <title>管理车辆类型</title>
  13. <%@ include file="../inc/nocache.jsp"%>
  14. </script>
  15. <style type="text/css">
  16. <!--
  17. .style2 {font-size: 14px}
  18. .STYLE3 {color: #FFFFFF}
  19. .STYLE4 {
  20. color: #000000;
  21. font-weight: bold;
  22. }
  23. .STYLE5 {color: #FF0000}
  24. .STYLE6 {color: #000000}
  25. -->
  26. </style>
  27. </head>
  28. <body> 
  29. <%
  30. String op = ParamUtil.get(request, "op");
  31. if (op.equals("edit")) {
  32. VehicleTypeMgr vtm = new VehicleTypeMgr();
  33. boolean re = false;
  34. try {
  35.   re = vtm.modify(request);
  36. }
  37. catch (ErrMsgException e) {
  38. out.print(StrUtil.Alert(e.getMessage()));
  39. }
  40. if (re)
  41. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.module.vehicletype", "success_modify_vehicletype")));
  42. }
  43. int id = 0;
  44. try {
  45. id = ParamUtil.getInt(request, "id");
  46. }
  47. catch (ErrMsgException e) {
  48. out.println(StrUtil.Alert_Back(SkinUtil.LoadString(request,"res.module.vehicletype", "warn_id_err_vehicletype")));
  49. }
  50. VehicleTypeDb vtd = new VehicleTypeDb(id);
  51. String typeCode = vtd.getTypeCode();
  52. String description = vtd.getDescription();
  53. %>
  54.  <form id=form1 name="form1" action="?op=edit" method=post>
  55. <table width="541" height="80" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" class="tableframe">
  56. <tr>
  57.   <td colspan="2" height="23" background="../images/top-right.gif" class="right-title"><span> &nbsp;车辆类型管理</span></td>
  58. </tr>
  59. <tr>
  60.   <td width="369" align="right"><span class="STYLE6">车辆类型编码(<span class="STYLE5">*</span>)</span><span class="STYLE4">:</span>
  61. <input name="typecode" width="200" value="<%=typeCode%>">
  62.   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
  63. <td width="170" align="center"><input type="hidden" name="id" value="<%=id%>" /></td>
  64. </tr>
  65. <tr>
  66. <td align="right"><span class="STYLE6">车辆类型说明(<span class="STYLE5">*</span>)</span><span class="STYLE4">:</span>
  67.   <input name="description" width="200" value="<%=description%>">
  68. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
  69. <td align="left"><input name="submit" type=submit class="button1" value="修  改"></td>
  70. </tr>
  71. </table>
  72.    </form>
  73. </body>
  74. </html>