topic.jsp

来自「JAVA+JSP程序系统-华源网络科技论坛」· JSP 代码 · 共 39 行

JSP
39
字号
<%@ taglib uri="techbbs.tld" prefix="mt" %>
<%@ page contentType="text/html; charset=gb2312" %>
<%@ include file="header.inc.jsp" %>
<%@ include file="other.jsp" %>
<jsp:useBean id="info" scope="page" class="org.jetic.web.techbbs.Information" />
<jsp:setProperty name="info" property="*" />
<%info.online(request.getRemoteAddr(),session,"主题列表");%>
<% int id = info.getboardID(); %>
<table width="100%" border="1" cellpadding="0" cellspacing="0" bordercolordark="#FFFFFF" bordercolorlight="#000000">
  <tr>
    <td bgcolor="#DDDDDD">
      <a href="index.jsp">华源技术论坛</a>
      <%= info.boardname(id) %>
      <a href="marked.jsp?boardID=<%= id %>">本版精华</a> 
      <a href="Post.jsp?boardID=<%= id %>">发表新文章</a>
      页码:<%= info.getTopiclistInfo() %>
      <%@ include file="link.inc" %>      
    </td>
  </tr>
</table>
<table border="0" width="100%" cellspacing="2" cellpadding="3">
  <tr bgcolor="#DDDDDD">
    <td align=center width="55%">主题</td>
    <td align=center width="6%">精华</td>
    <td align=center>作者</td>
    <td align=center>点击</td>
    <td align=center>回复</td>
  </tr>
  <mt:Topiclist boardID="<%= id %>" page="<%= info.getPage() %>">
  <tr bgcolor=#F5F5F5>
    <td><img src="image/icon/icon<%= topicicon %>.gif" width=15 height=15 align=middle> <a href="content.jsp?boardID=<%= id %>&articleID=<%= topicID %>"><%= topictitle %></a></td>
    <td align=center><%= topicmark %></td>
    <td align=center><%= topicwriter %></td>
    <td align=center><%= topicclick %></td>
    <td align=center><%= topicre %></td>
  </tr>
  </mt:Topiclist>
</table>
<%@ include file="footer.inc" %>

⌨️ 快捷键说明

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