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

📄 saleproducts.tag

📁 基于struts+hibernate的电子商务网站。可运行。数据库mysql
💻 TAG
字号:
<%-- 本周商品排行 --%>
<%@ tag pageEncoding="UTF-8" isELIgnored="false"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<div id="ChangXiao">
	<div class="ProductHead">本周畅销商品排行</div>
	<div class="ProductList">
		<c:choose>
			<c:when test="${not empty requestScope.saleproducts}">
				<c:forEach items="${requestScope.saleproducts}" var="product" varStatus="s" begin="0" end="2">
					<table width="100%" cellpadding="0" cellspacing="0" border="0" class="DefaultHotTable" align="center">
						<tr>
							<td rowspan="3" width="80" class="DefaultHotTableTD">
								<a href="productinfo.htm?pid=${product.id }" target="_blank"> <img src='productphoto.do?id=${product.id}&pid=0' border="0" width="70" height="70" title='${product.name }' /></a>
							</td>
							<td width="60" align="right" class="DefaultHotTableTD"> 商品名称:</td>
							<td class="DefaultHotTableTD">&nbsp;<a href="productinfo.htm?pid=${product.id}" target="_blank"> ${product.name}</a></td>
						</tr>
						<tr>
							<td width="60" align="right" class="DefaultHotTableTD"> 商品价格:</td>
							<td class="DefaultHotTableTD">&nbsp;${product.price}</td>
						</tr>
						<tr>
							<td width="60" align="right" class="DefaultHotTableTD"> 关注次数:</td>
							<td class="DefaultHotTableTD" style="color:red">&nbsp;${product.viewpopluarity}</td>
						</tr>
					</table>
				</c:forEach>
				<ul class="TopProductListStyle">
				<c:forEach items="${requestScope.saleproducts}" var="product" varStatus="s" begin="3">
					<li>&nbsp;&nbsp;${s.index+1}.
						<a href="productinfo.htm?pid=${product.id}" target="_blank">${product.name}</a>&nbsp;<span>[${product.viewpopluarity}]</span>
					</li>
				</c:forEach>
				</ul>
			</c:when>
			<c:otherwise>
				暂无本周畅销商品排行!
			</c:otherwise>
		</c:choose>
	</div>
</div>

⌨️ 快捷键说明

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