📄 topic.jsp
字号:
<%@ taglib uri="/forumTaglib" prefix="forum" %>
<jsp:useBean id="topic" class="forum.Topic" scope="request"/>
<p>
<h2>Topic : <%= topic.getTitle() %></h2>
</p>
<p>
<table width="100%" border="1">
<tr>
<td><b>Author</b></td>
<td><b>Response</b></td>
<td> </td>
</tr>
<tr>
<td><%= topic.getUser().getId() %></td>
<td><%= topic.getText() %><br><br></td>
<td> </td>
</tr>
<forum:iterate id="res" className="forum.Response" collection="<%= topic.getResponses() %>">
<%
if (!res.isDeleted()) {
%>
<tr>
<td><%= res.getUser().getId() %></td>
<td><%= res.getText() %><br><br></td>
<td valign="top" align="center">
[ <a href="controller/DeleteResponse?topic=<%= topic.getId() %>&response=<%= res.getId() %>">Delete</a> ]
</td>
</tr>
<%
}
%>
</forum:iterate>
</table>
</p>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -