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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8" %>
  2. <%@ page import="com.redmoon.oa.emailpop3.*"%>
  3. <%@ page import="cn.js.fan.web.*"%>
  4. <%@ page import="cn.js.fan.util.*"%>
  5. <%@ page import="cn.js.fan.mail.*"%>
  6. <%@ page import="java.util.*"%>
  7. <html>
  8. <head>
  9. <title>取邮件</title>
  10. <link href="../common.css" rel="stylesheet" type="text/css">
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head>
  12. <%@ include file="../inc/nocache.jsp" %>
  13. <body leftmargin="0" topmargin="5">
  14. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  15. <%
  16. boolean re = false;
  17. MailMsgMgr mmm = new MailMsgMgr();
  18. try {
  19. re = mmm.add(application, request);
  20. }
  21. catch (ErrMsgException e) {
  22. out.print(StrUtil.Alert_Back(e.getMessage()));
  23. return;
  24. }
  25. if (re) {
  26. out.print(StrUtil.Alert_Redirect(SkinUtil.LoadString(request, "info_op_success"), "mail_list.jsp?type=" + MailMsgDb.TYPE_DRAFT + "&sender=" + mmm.getMailMsgDb().getSender()));
  27. }
  28. %>
  29. </body>
  30. </html>