📄 searchproducts.jsp
字号:
<%@ include file="../common/IncludeTop.jsp" %>
<bean:define id="productList" name="catalogBean" property="productList"/>
<div id="BackLink">
<html:link page="/shop/index.shtml">Return to Main Menu</html:link>
</div>
<div id="Catalog">
<table>
<tr><th> </th> <th>Product ID</th> <th>Name</th></tr>
<logic:iterate id="product" name="productList">
<tr>
<td><html:link paramId="productId" paramName="product" paramProperty="productId" page="/shop/viewProduct.shtml">
<bean:write filter="false" name="product" property="description"/></html:link></td>
<td><b><html:link paramId="productId" paramName="product" paramProperty="productId"
page="/shop/viewProduct.shtml"><font color="BLACK"><bean:write name="product"
property="productId"/></font>
</html:link></b></td>
<td><bean:write name="product" property="name"/></td>
</tr>
</logic:iterate>
<tr>
<td>
<logic:notEqual name="productList" property="firstPage" value="true">
<a href="switchSearchListPage.shtml?pageDirection=previous"><< Previous</a>
</logic:notEqual>
<logic:notEqual name="productList" property="lastPage" value="true">
<a href="switchSearchListPage.shtml?pageDirection=next">Next >></a>
</logic:notEqual>
</td>
</tr>
</table>
</div>
<%@ include file="../common/IncludeBottom.jsp" %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -