📄 addattachmentsuccess.jsp
字号:
<%--
- $Header: /cvsroot/fiyuforum/fiyuforum/srcweb/fiyuplugin/fiyuforum/admin/addcategory.jsp,v 1.22 2003/10/19 09:41:34 imanic Exp $
- $Author: 飞鱼
- $Revision: 1.22 $
- $Date: 2003/02/01 09:41:34 $
- http://www.hnedu.net/fiyu
--%>
<%@ page contentType="text/html;charset=utf-8" %>
<%@ page errorPage="fatalerror.jsp"%>
<%@ page import="fiyucore.util.ParamUtil" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<%@ include file="inc_common.jsp"%>
<%
String forumID = (String)ParamUtil.getAttribute(request, "ForumID");
String threadID = (String)ParamUtil.getAttribute(request, "ThreadID");
String postID = (String)ParamUtil.getAttribute(request, "PostID");
String offset = (String)ParamUtil.getAttribute(request, "offset");
boolean attachMore = ((Boolean)request.getAttribute("AttachMore")).booleanValue();
String viewthreadLink = "viewthread?thread=" + threadID + "&offset=" + offset;
String attachLink = "addattachment?post=" + postID + "&offset=" + offset;
String defaultLink = viewthreadLink;
if (attachMore) {
defaultLink = attachLink;
}
%>
<html >
<head>
<title>fiyuForum - 附加档案成功</title>
<%@ include file="/fiyuplugin/fiyuforum/meta.jsp"%>
<meta http-equiv='refresh' content='3; url=<%=defaultLink%>'>
</head>
<link href="<%=contextPath%>/fiyuplugin/fiyuforum/css/style.css" rel="stylesheet" type="text/css">
<body leftmargin="0" topmargin="0">
<%@ include file="header.jsp"%>
<br/>
<table width="95%" align="center">
<tr class="nav">
<td><img src="<%=contextPath%>/fiyuplugin/fiyuforum/images/nav.gif"></td>
<td width="100%" nowrap>
<a class="nav" href="index"><%=fiyuForumConfig.getWebName()%></a> »
附加档案成功
</td>
</tr>
</table>
<br/>
<table class="tborder" width="95%" cellspacing="1" cellpadding="3" align="center">
<tr class="theader">
<td>请选择下列连接:</td>
</tr>
<% if (attachMore) { %>
<tr class="trow1">
<td><b>» </b><a class="command" href="<%=attachLink%>">返回添加附件网页</a>
(自动(3秒钟后))</td>
</tr>
<tr class="trow2">
<td><b>» </b><a class="command" href="<%=viewthreadLink%>">返回此文章</a></td>
</tr>
<% } else { %>
<tr class="trow2">
<td><b>» </b><a class="command" href="<%=viewthreadLink%>">返回此文章</a>
(自动(3秒钟后))</td>
</tr>
<% } %>
<tr class="trow1">
<td><b>» </b><a class="command" href="listthreads?forum=<%=forumID%>">返回话题列表</a></td>
</tr>
<tr class="trow2">
<td><b>» </b><a class="command" href="index">返回讨论区</a></td>
</tr>
</table>
<br/>
<%@ include file="footer.jsp"%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -