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

📄 checkout.jsp

📁 简单的Jdon实现
💻 JSP
字号:
<%@include file="../common/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">
<html:link page="/shop/viewCart.shtml"><b><font color="BLACK" size="2">&lt;&lt; Shopping Cart</font></b></html:link>
</td></tr>
</table>
</td>

<td valign="top" align="center">
<h2 align="center">Checkout Summary</h2>

<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>
  </tr>

<logic:iterate id="cartItem" name="listForm" property="list">
  <tr bgcolor="#FFFF88">
  <td><b>

 <html:link paramId="itemId" paramName="cartItem" paramProperty="item.itemId" page="/shop/viewItem.shtml">
 <bean:write name="cartItem" property="item.itemId" /></html:link></b></td>
  <td><bean:write name="cartItem" property="item.productId" /></td>
  <td>
     <bean:write name="cartItem" property="item.attribute1" />
     <bean:write name="cartItem" property="item.attribute2" />
     <bean:write name="cartItem" property="item.attribute3" />
     <bean:write name="cartItem" property="item.attribute4" />
     <bean:write name="cartItem" property="item.attribute5" />
     <bean:write name="cartItem" property="item.product.name" />
   </td>
  <td align="center"><bean:write name="cartItem" property="inStock" /></td>
  <td align="center">
  <bean:write name="cartItem" property="quantity" />
  </td>
  <td align="right"><bean:write name="cartItem" property="item.listPrice" format="$#,##0.00" /></td>
  <td align="right"><bean:write name="cartItem" property="total" format="$#,##0.00" /></td>
  </tr>
</logic:iterate>
<tr bgcolor="#FFFF88">
<td colspan="7" align="right">
<bean:define id="cartItems" name="listForm" property="oneModel" />
<b>Sub Total: <bean:write name="cartItems" property="subTotal" format="$#,##0.00" /></b><br />

</td>
</tr>
</table>
<center>
<MultiPages:pager actionFormName="listForm" page="/shop/viewCart.shtml">
<MultiPages:prev name="<img src='../images/button_prev.gif' border=0>"/>
<MultiPages:index />
<MultiPages:next name="<img src='../images/button_next.gif' border=0>"/>
</MultiPages:pager>

</center>
<br>
<center><html:link page="/shop/signon.shtml?method=signcheck&backurl=/shop/newOrderForm.shtml"><img border="0" src="../images/button_continue.gif" /></html:link></center>
</td>


<td valign="top" width="20%" align="right">
&nbsp; 
</td>

</tr>
</table>

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




⌨️ 快捷键说明

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