my_posts.jsp

来自「论坛软件系统亦称电子公告板(BBS)系统」· JSP 代码 · 共 16 行

JSP
16
字号
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c"%>
<h1>我的话题</h1>
<ul class="tabs headertabs"><li><a href="my.jsp?item=threads${extrafid}">我的主题</a></li><li class="current"><a href="my.jsp?item=posts${extrafid}">我的回复</a></li></ul>
<table cellspacing="0" cellpadding="0" width="100%" summary="我的回复">
	<thead><tr><td>所在主题</td><td>版块</td><td>最后发表</td><td>状态</td></tr></thead>
	<tbody>
		<c:forEach items="${postlists}" var="postlist"><tr>
			<td><a href="redirect.jsp?goto=findpost&pid=${postlist.pid}&ptid=${postlist.tid}" target="_blank">${postlist.subject}</a></td>
			<td><c:choose><c:when test="${forumdisplayurl}"><a href="forum-${postlist.fid}-1.html" target="_blank">${postlist.name}</a></c:when><c:otherwise><a href="forumdisplay.jsp?fid=${postlist.fid}" target="_blank">${postlist.name}</a></c:otherwise></c:choose></td>
			<td><cite><a href="redirect.jsp?tid=${postlist.tid}&goto=lastpost#lastpost">${postlist.lastpost}</a><br /> by <c:if test="${postlist.lastposter!=''}"><c:choose><c:when test="${spaceurlurl}"><a href="space-username-${postlist.lastposterenc}.html" target="_blank">${postlist.lastposter}</a></c:when><c:otherwise><a href="space.jsp?username=${postlist.lastposterenc}" target="_blank">${postlist.lastposter}</a></c:otherwise></c:choose></c:if><c:if test="${postlist.lastposter==''}">匿名</c:if></cite></td>
			<td>${postlist.invisible==-1||postlist.invisible==-2?"回收站":"正常"}</td>
		</tr></c:forEach>
		<c:if test="${empty postlists}"><tr><td colspan="4">本版块或指定的范围内尚无主题。</td></tr></c:if>
	</tbody>
</table>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?