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

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. <%@ page import="cn.js.fan.web.*" %>
  6. <%@ page import="java.util.Calendar" %>
  7. <%@ page import="com.redmoon.forum.person.UserSet"%>
  8. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil" />
  9. <jsp:useBean id="form" scope="page" class="cn.js.fan.security.Form" />
  10. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  11. <%
  12. boolean isSuccess = false;
  13. String privurl = "";
  14. boolean cansubmit = false;
  15. com.redmoon.forum.Config cfg = new com.redmoon.forum.Config();
  16. int interval = cfg.getIntProperty("forum.addMsgInterval");
  17. int maxtimespan = interval;
  18. try {
  19. cansubmit = form.cansubmit(request, "addtopic", maxtimespan);// 防止重复刷新
  20. }
  21. catch (ErrMsgException e) {
  22. out.println(StrUtil.Alert_Back(e.getMessage()));
  23. return;
  24. }
  25. %>
  26. <jsp:useBean id="Topic" scope="page" class="com.redmoon.forum.MsgMgr" />
  27. <%
  28. String boardcode = "";
  29. long id = -1;
  30. if (cansubmit) {
  31. try {
  32. isSuccess = Topic.AddNew(application, request);
  33. privurl = Topic.getprivurl();
  34. boardcode = Topic.getCurBoardCode();
  35. id = Topic.getId();
  36. }
  37. catch (ErrMsgException e) {
  38. out.println(StrUtil.Alert_Back(e.getMessage()));
  39. return;
  40. }
  41. }
  42. if (Topic.isBlog()) {
  43. String addFlag = ParamUtil.get(request, "addFlag");
  44. // 说明是从博客用户管理后台发表的
  45. if (addFlag.equals("blog")) {
  46. MsgDb md = Topic.getMsgDb(Topic.getId());
  47. if (md.getCheckStatus()==MsgDb.CHECK_STATUS_NOT) {
  48. out.print(StrUtil.Alert_Redirect(SkinUtil.LoadString(request, "res.label.forum.addtopic", "need_check"), "../blog/user/listtopic.jsp?userName=" + StrUtil.UrlEncode(Topic.getName())));
  49. }
  50. else
  51. out.print(StrUtil.Alert_Redirect(SkinUtil.LoadString(request, "info_op_success"), "../blog/user/listtopic.jsp?userName=" + StrUtil.UrlEncode(Topic.getName())));
  52. return;
  53. }
  54. // 是从论坛发贴时选择博客目录发表的
  55. if (boardcode.equals(Leaf.CODE_BLOG)) {
  56. out.print(StrUtil.Alert_Redirect(SkinUtil.LoadString(request, "info_op_success"), "showblog.jsp?rootid=" + id));
  57. return;
  58. }
  59. }
  60. %>
  61. <%
  62. // 取得皮肤路径
  63. Leaf lf = new Leaf();
  64. lf = lf.getLeaf(boardcode);
  65. String skincode = lf.getSkin();
  66. if (skincode.equals(UserSet.defaultSkin)) {
  67. skincode = UserSet.getSkin(request);
  68. if (skincode==null || skincode.equals(""))
  69. skincode = UserSet.defaultSkin;
  70. }
  71. SkinMgr skm = new SkinMgr();
  72. Skin skin = skm.getSkin(skincode);
  73. String skinPath = skin.getPath();
  74. %>
  75. <html>
  76. <head>
  77. <title><lt:Label res="res.label.forum.addtopic" key="addtopic"/> - <%=Global.AppName%></title>
  78. <%@ include file="../inc/nocache.jsp"%>
  79. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  80. <link href="<%=skinPath%>/skin.css" rel="stylesheet" type="text/css">
  81. <style type="text/css">
  82. <!--
  83. body {
  84. margin-left: 0px;
  85. margin-top: 0px;
  86. margin-right: 0px;
  87. }
  88. -->
  89. </style></head>
  90. <body bgcolor="#FFFFFF" text="#000000">
  91. <%@ include file="inc/header.jsp"%>
  92. <%
  93. if (isSuccess)
  94. {
  95. %>
  96. <ol><lt:Label key="info_op_success"/></ol>
  97. <%
  98. out.println(SkinUtil.waitJump(request, "<a href='showtopic.jsp?rootid="+id+"'>" + SkinUtil.LoadString(request, "res.label.forum.addtopic", "jump_to_topic") + "</a>",3,"showtopic.jsp?rootid=" + id));
  99. out.println("<ol><a href='"+privurl+"'>" + SkinUtil.LoadString(request, "info_back") + "</a></ol>");
  100. MsgDb md = Topic.getMsgDb(Topic.getId());
  101. if (md.getCheckStatus()==MsgDb.CHECK_STATUS_NOT) {
  102. out.println("<ol>" + SkinUtil.LoadString(request, "res.label.forum.addtopic", "need_check") + "</ol>");
  103. }
  104. }%>
  105. <%@ include file="inc/footer.jsp"%>
  106. </body>
  107. </html>