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