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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=gb2312"%>
  2. <%@ page import = "java.net.URLEncoder"%>
  3. <%@ page import = "fan.util.ErrMsgException"%>
  4. <html>
  5. <head>
  6. <title>增加日程</title>
  7. <%@ include file="../inc/nocache.jsp"%>
  8. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  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. <jsp:useBean id="email" scope="page" class="com.redmoon.oa.Email"/>
  20. <%
  21. String priv="admin";
  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. String id = request.getParameter("document_id");
  28. if (id==null || id.equals(""))
  29. {
  30. out.print(fchar.Alert_Back("标识不能为空!"));
  31. return;
  32. }
  33. %>
  34. <jsp:useBean id="doc" scope="page" class="com.redmoon.oa.document.Document"/>
  35. <%
  36. boolean re = false;
  37. try {
  38. re = doc.del(request);
  39. }
  40. catch (ErrMsgException e) {
  41. out.println(e.getMessage());
  42. }
  43. if (re)
  44. out.println(fchar.Alert_Back("删除文件成功!"));
  45. %>
  46. </body>
  47. </html>