pop3_setup_do.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.util.*"%>
  4. <%
  5. boolean re = false;
  6. String op = ParamUtil.get(request, "op");
  7. if (op.equals("edit")) {
  8. try {
  9. EmailPop3Mgr epm = new EmailPop3Mgr();
  10. re = epm.modify(request);
  11. }
  12. catch (ErrMsgException e) {
  13. out.print(StrUtil.Alert_Back(e.getMessage()));
  14. }
  15. if (re) {
  16. out.print(StrUtil.Alert_Back("操作成功!"));
  17. }
  18. }
  19. if (op.equals("del")) {
  20. try {
  21. EmailPop3Mgr epm = new EmailPop3Mgr();
  22. re = epm.del(request);
  23. }
  24. catch (ErrMsgException e) {
  25. out.print(StrUtil.Alert_Back(e.getMessage()));
  26. }
  27. if (re) {
  28. out.print(StrUtil.Alert_Back("操作成功!"));
  29. }
  30. }
  31. %>