📄 index.jsp
字号:
<%@ include file="header.html" %>
<h2>Current topics</h2>
<p>
<table width="100%" border="1">
<tr>
<td><b>Title</b></td>
<td><b>Responses</b></td>
</tr>
<%
Collection topics = Topics.getTopics();
Iterator it = topics.iterator();
Topic topic;
int id;
while (it.hasNext()) {
topic = (Topic)it.next();
id = topic.getId();
%>
<tr>
<td>
<a href="controller/ViewTopic?id=<%= id %>"><%= topic.getTitle() %></a>
</td>
<td>
<%= topic.getResponseCount() %>
</td>
</tr>
<%
}
%>
</table>
</p>
<%@ include file="footer.html" %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -