?? cart.jsp
字號:
<%@ include file="IncludeTop.jsp" %>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr><td valign="top" width="20%" align="left">
<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"><< Main Menu</font></b></a>
</td></tr>
</table>
</td><td valign="top" align="center">
<h2 align="center">Shopping Cart</h2>
<form action="<c:url value="/shop/updateCartQuantities.do"/>" method="post">
<table align="center" bgcolor="#008800" border="0" cellspacing="2" cellpadding="5">
<tr bgcolor="#cccccc">
<td><b>Item ID</b></td> <td><b>Product ID</b></td> <td><b>Description</b></td> <td><b>In Stock?</b></td> <td><b>Quantity</b></td> <td><b>List Price</b></td> <td><b>Total Cost</b></td> <td> </td>
</tr>
<c:if test="${cartForm.cart.numberOfItems == 0}">
<tr bgcolor="#FFFF88"><td colspan="8"><b>Your cart is empty.</b></td></tr>
</c:if>
<c:forEach var="cartItem" items="${cartForm.cart.cartItemList.pageList}">
<tr bgcolor="#FFFF88">
<td><b>
<a href="<c:url value="/shop/viewItem.do"><c:param name="itemId" value="${cartItem.item.itemId}"/></c:url>">
<c:out value="${cartItem.item.itemId}"/>
</a></b></td>
<td><c:out value="${cartItem.item.productId}"/></td>
<td>
<c:out value="${cartItem.item.attribute1}"/>
<c:out value="${cartItem.item.attribute2}"/>
<c:out value="${cartItem.item.attribute3}"/>
<c:out value="${cartItem.item.attribute4}"/>
<c:out value="${cartItem.item.attribute5}"/>
<c:out value="${cartItem.item.product.name}"/>
</td>
<td align="center"><c:out value="${cartItem.inStock}"/></td>
<td align="center">
<input type="text" size="3" name="<c:out value="${cartItem.item.itemId}"/>" value="<c:out value="${cartItem.quantity}"/>" />
</td>
<td align="right"><fmt:formatNumber value="${cartItem.item.listPrice}" pattern="$#,##0.00" /></td>
<td align="right"><fmt:formatNumber value="${cartItem.totalPrice}" pattern="$#,##0.00" /></td>
<td><a href="<c:url value="/shop/removeItemFromCart.do"><c:param name="workingItemId" value="${cartItem.item.itemId}"/></c:url>">
<img border="0" src="../images/button_remove.gif" />
</a></td>
</tr>
</c:forEach>
<tr bgcolor="#FFFF88">
<td colspan="7" align="right">
<b>Sub Total: <fmt:formatNumber value="${cartForm.cart.subTotal}" pattern="$#,##0.00" /></b><br/>
<input type="image" border="0" src="../images/button_update_cart.gif" name="update" />
</td>
<td> </td>
</tr>
</table>
<center>
<c:if test="${!cartForm.cart.cartItemList.firstPage}">
<a href="<c:url value="viewCart.do?page=previousCart"/>"><font color="green"><B><< Prev</B></font></a>
</c:if>
<c:if test="${!cartForm.cart.cartItemList.lastPage}">
<a href="<c:url value="viewCart.do?page=nextCart"/>"><font color="green"><B>Next >></B></font></a>
</c:if>
</center>
</form>
<c:if test="${cartForm.cart.numberOfItems > 0}">
<br /><center><a href="<c:url value="/shop/checkout.do"/>"><img border="0" src="../images/button_checkout.gif" /></a></center>
</c:if>
</td>
<td valign="top" width="20%" align="right">
<c:if test="${!empty accountForm.account.username}">
<c:if test="${accountForm.account.listOption}">
<%@ include file="IncludeMyList.jsp" %>
</c:if>
</c:if>
</td>
</tr>
</table>
<%@ include file="IncludeBanner.jsp" %>
<%@ include file="IncludeBottom.jsp" %>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -