category-list.jsp
来自「用Struts+Hibernate实现一个在线书店系统」· JSP 代码 · 共 18 行
JSP
18 行
<%@ page contentType="text/html;charset=UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<table cellspacing=3 cellpadding=3 width="100%">
<tr>
<td bgcolor="#6AB301"></td>
<td bgcolor="#6AB301"><b>No. Titles</b></td>
</tr>
<c:forEach items="${categories}" var="thisItem">
<tr>
<td valign="top" bgcolor="#A2D846"><h3><a href="browsecategory.do?cat=${thisItem.id}">
${thisItem.name}</a>
</h3>${thisItem.description}</td>
<td valign="top" bgcolor="#A2D846">${thisItem.bookCount}</td>
</tr>
</c:forEach>
</table>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?