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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"
  2. import = "java.io.File"
  3. import = "cn.js.fan.util.ErrMsgException"
  4. %>
  5. <html>
  6. <head>
  7. <title>编辑任务处理</title>
  8. <%@ include file="inc/nocache.jsp"%>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  10. <link rel="stylesheet" href="common.css" type="text/css">
  11. <script language="javascript">
  12. <!--
  13. //-->
  14. </script>
  15. </head>
  16. <body bgcolor="#FFFFFF" text="#000000">
  17. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil" />
  18. <jsp:useBean id="task" scope="page" class="com.redmoon.oa.task.TaskMgr" />
  19. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  20. <%
  21. String priv="read";
  22. if (!privilege.isUserPrivValid(request,priv))
  23. {
  24. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  25. return;
  26. }
  27. %>
  28. <br>
  29. <%
  30. boolean isSuccess = false;
  31. String privurl = "";
  32. try {
  33. isSuccess = task.edit(application, request);
  34. privurl = task.getprivurl();
  35. }
  36. catch (ErrMsgException e) {
  37. out.println(fchar.makeErrMsg("修改失败:"+e.getMessage()));
  38. }
  39. if (isSuccess)
  40. {
  41. %>
  42. <ol>修改成功!</ol>
  43. <%
  44. out.println(fchar.waitJump("<a href='"+privurl+"'>回到前页!</a>",3,privurl));
  45. }
  46. %>
  47. </body>
  48. </html>