日期:2014-05-19 浏览次数:21065 次
<jsp:include page="updatecart.jsp" flush="false"/> <jsp:include page="delitemfromcart.jsp" flush="false"/> <form name="viewform" action="viewcart.jsp" method="post"> <table width="100%" border="0" align="CENTER" cellpadding="2" cellspacing="1" bgcolor="#c0c0c0"> <tr bgcolor="#dadada"> <td height="22" width="36"> <div align="CENTER"> <font color="#000000">编号</font> </div> </td> <td width="100" height="22"> <div align="CENTER"> <font color="#000000">菜名</font> </div> </td> <td height="22" width="36"> <div align="CENTER"> <font color="#000000">单价</font> </div> </td> <td height="22" width="36"> <div align="CENTER"> <font color="#000000">数量</font> </div> </td> <td width="36" height="22"> <div align="CENTER"> <font color="#000000">金额</font> </div> </td> <td width="36" height="22"> <div align="CENTER"> <font color="#000000">操作</font> </div> </td> </tr> <c:set var="cart" value="${sessionScope.CART}" scope="session"/> <c:if test="${cart!=null}"> <c:set var="totalprice" value="${0.0+0.0}"/> <c:forEach var="entry" items="${cart}"> <c:set var="item" value="${entry.value}"/> <c:set var="totalprice" value="${totalprice+item.totalprice}"/> <c:set var="dish" value="${item.dish}"/> <tr bgcolor="#ffffff"> <td width="36" align="center" height="22"> <font color="#000000">${dish.dishid}</font> </td> <td width="100" height="22"> <font color="#000000">${dish.dishname}</font> </td> <td width="36" align