index.jsp

来自「JAVA Servlet2.3外文书籍源码」· JSP 代码 · 共 40 行

JSP
40
字号
<%@ 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="view-topic.jsp?id=<%= id %>"><%= topic.getTitle() %></a>
      </td>
      <td>
        <%= topic.getResponseCount() %>
      </td>
    </tr>
  <%
    }
  %>

</table>
</p>

<%@ include file="footer.html" %>

⌨️ 快捷键说明

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