category.jsp

来自「Java/J2EE application framework based on」· JSP 代码 · 共 34 行

JSP
34
字号
<%@ include file="IncludeTop.jsp" %>

<table align="left" bgcolor="#008800" border="0" cellspacing="2" cellpadding="2">
<tr><td bgcolor="#FFFF88">
<a href="<c:url value="/shop/index.do"/>"><b><font color="BLACK" size="2"/>&lt;&lt; Main Menu</font></b></a>
</td></tr>
</table>

<p>
<center>
  <h2><c:out value="${category.name}"/></h2>
  </center>
<table align="center" bgcolor="#008800" border="0" cellspacing="2" cellpadding="3">
  <tr bgcolor="#CCCCCC">  <td><b>Product ID</b></td>  <td><b>Name</b></td>  </tr>
<c:forEach var="product" items="${productList.pageList}">
  <tr bgcolor="#FFFF88">
  <td><b><a href="<c:url value="/shop/viewProduct.do"><c:param name="productId" value="${product.productId}"/></c:url>">
	  <font color="BLACK"><c:out value="${product.productId}"/></font>
	</a></b></td>
  <td><c:out value="${product.name}"/></td>
  </tr>
</c:forEach>
  <tr><td>
  <c:if test="${!productList.firstPage}">
    <a href="?page=previous"><font color="white"><B>&lt;&lt; Prev</B></font></a>
  </c:if>
  <c:if test="${!productList.lastPage}">
    <a href="?page=next"><font color="white"><B>Next &gt;&gt;</B></font></a>
  </c:if>
  </td></tr>
</table>

<%@ include file="IncludeBottom.jsp" %></p></p>

⌨️ 快捷键说明

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