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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ page import = "cn.js.fan.util.*"%>
  3. <html>
  4. <head>
  5. <title>增加日程</title>
  6. <%@ include file="inc/nocache.jsp"%>
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  8. <link rel="stylesheet" href="common.css" type="text/css">
  9. <script language="javascript">
  10. <!--
  11. //-->
  12. </script>
  13. </head>
  14. <body bgcolor="#FFFFFF" text="#000000">
  15. <%@ include file="inc/inc.jsp"%>
  16. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  17. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  18. <%
  19. String priv="read";
  20. if (!privilege.isUserPrivValid(request,priv))
  21. {
  22. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  23. return;
  24. }
  25. %>
  26. <jsp:useBean id="plan" scope="page" class="com.redmoon.oa.person.PlanMgr"/>
  27. <%
  28. boolean re = false;
  29. int id = ParamUtil.getInt(request, "id");
  30. try {
  31. re = plan.modify(request);
  32. }
  33. catch (ErrMsgException e) {
  34. out.println(fchar.Alert_Back(e.getMessage()));
  35. return;
  36. }
  37. if (re)
  38. out.println(fchar.Alert_Redirect("修改日程成功!", "plan_edit.jsp?id=" + id));
  39. %>
  40. </body>
  41. </html>