⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 category-list.jsp

📁 用Struts+Hibernate实现一个在线书店系统
💻 JSP
字号:
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -