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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=gb2312"
  2. import = "java.io.File"
  3. import = "fan.util.*"
  4. %>
  5. <html>
  6. <head>
  7. <title>发件箱</title>
  8. <%@ include file="../inc/nocache.jsp"%>
  9. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  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. <%@ include file="../inc/inc.jsp"%>
  18. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  19. <jsp:setProperty name="privilege" property="defaulturl" value="../index.jsp"/>
  20. <!--重定向至 :<jsp:getProperty name="privilege" property="defaulturl"   />-->
  21. <%
  22. String priv="admin";
  23. String priv1="notice_public";
  24. if (!privilege.isUserPrivValid(request,priv) && !privilege.isUserDepartmentPrivValid(request,priv1))
  25. {
  26. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  27. return;
  28. }
  29. %>
  30. <jsp:useBean id="notice" scope="page" class="com.redmoon.oa.Notice"/>
  31. <%
  32. boolean re = false;
  33. try {
  34. re = notice.Write(request);
  35. }
  36. catch (ErrMsgException e) {
  37. out.println(e.getMessage());
  38. }
  39. if (re)
  40. out.println(fchar.Alert_Back("发送通知成功!"));
  41. %>
  42. </body>
  43. </html>