SaveReAnnounce.jsp
上传用户:toby834
上传日期:2013-10-21
资源大小:2613k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=GBK" %>
  2. <%@ include file="INC/const.jsp"%>
  3. <%@ include file="INC/theme.jsp"%>
  4. <%
  5. String errMsg="";
  6. try{
  7. Forum theForum=ForumFactory.getForum(forumID);
  8. String url=theForum.addMSG(request,response);
  9. stats=theForum.getForumType()+"回复成功!";
  10. out.println(headLine(forumID,forumName,forumLogo,theForum.getForumType(),2,stats));
  11. %>
  12. <meta http-equiv=refresh content="3;URL=<%=url%>">
  13. <br><table cellpadding=0 cellspacing=0 border=0 width=95% bgcolor=<%=tableBackColor%> align=center>
  14. <tr><td><table cellpadding=3 cellspacing=1 border=0 width="100%">
  15. <tr align=center><td width="100%" bgcolor=<%=tableTitleColor%>><b><FONT COLOR=<%=tableFontColor%>>状态:您回复帖子成功</font></b></td>
  16. </tr><tr><td width="100%" bgcolor=<%=tableBodyColor%>>
  17. <FONT COLOR=<%=tableContentColor%>>本页面将在3秒后自动返回您所发表的帖子页面,<b>您可以选择以下操作:</b><br><ul>
  18. <li><a href="index.jsp"><font color="<%=tableContentColor%>">返回首页</font></a></li>
  19. <li><a href="list.jsp?forumID=<%=forumID%>"><font color="<%=tableContentColor%>"><%=theForum.getForumType()%></font></a></li>
  20. <li><a href="<%=url%>"><font color="<%=tableContentColor%>">发表的帖子</font></a></li>
  21. </ul></td></tr></table></td></tr></table>
  22. <%
  23. }
  24. catch(ForumNotFoundException e)
  25. {
  26. e.printStackTrace();
  27. errMsg=e.getMessage();
  28. %>
  29. <%@include file="INC/error.jsp"%>
  30. <%
  31. }
  32. catch(UserNotFoundException e)
  33. {
  34. e.printStackTrace();
  35. errMsg=e.getMessage();
  36. %>
  37. <%@include file="INC/error.jsp"%>
  38. <%
  39. }
  40. catch(Exception e)
  41. {
  42. e.printStackTrace();
  43. errMsg=e.getMessage();
  44. %>
  45. <%@include file="INC/error.jsp"%>
  46. <%
  47. }
  48. %>
  49. <%@ include file="foot.jsp"%>