?? savereannounce.jsp
字號:
<%@ page contentType="text/html;charset=GBK" %>
<%@ include file="INC/const.jsp"%>
<%@ include file="INC/theme.jsp"%>
<%
String errMsg="";
try{
Forum theForum=ForumFactory.getForum(forumID);
String url=theForum.addMSG(request,response);
stats=theForum.getForumType()+"回復成功!";
out.println(headLine(forumID,forumName,forumLogo,theForum.getForumType(),2,stats));
%>
<meta http-equiv=refresh content="3;URL=<%=url%>">
<br><table cellpadding=0 cellspacing=0 border=0 width=95% bgcolor=<%=tableBackColor%> align=center>
<tr><td><table cellpadding=3 cellspacing=1 border=0 width="100%">
<tr align=center><td width="100%" bgcolor=<%=tableTitleColor%>><b><FONT COLOR=<%=tableFontColor%>>狀態:您回復帖子成功</font></b></td>
</tr><tr><td width="100%" bgcolor=<%=tableBodyColor%>>
<FONT COLOR=<%=tableContentColor%>>本頁面將在3秒后自動返回您所發表的帖子頁面,<b>您可以選擇以下操作:</b><br><ul>
<li><a href="index.jsp"><font color="<%=tableContentColor%>">返回首頁</font></a></li>
<li><a href="list.jsp?forumID=<%=forumID%>"><font color="<%=tableContentColor%>"><%=theForum.getForumType()%></font></a></li>
<li><a href="<%=url%>"><font color="<%=tableContentColor%>">發表的帖子</font></a></li>
</ul></td></tr></table></td></tr></table>
<%
}
catch(ForumNotFoundException e)
{
e.printStackTrace();
errMsg=e.getMessage();
%>
<%@include file="INC/error.jsp"%>
<%
}
catch(UserNotFoundException e)
{
e.printStackTrace();
errMsg=e.getMessage();
%>
<%@include file="INC/error.jsp"%>
<%
}
catch(Exception e)
{
e.printStackTrace();
errMsg=e.getMessage();
%>
<%@include file="INC/error.jsp"%>
<%
}
%>
<%@ include file="foot.jsp"%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -