I l @ ve RuBoard |
The code for the final conformation (given in Listing 12.10) itself is a duplicate of the shopping cart page, with the following changes:
Listing 12.10 finalConfirm.jsp<%@ include file="/jsp/cust/AutoLogin.jsp" %> <%@ page import="com.bfg.product.Product" %> <%@ page import="java.util.Iterator" %> <%@ page import="com.bfg.cart.CartItem" %> <jsp:useBean id="orderaddr" class="com.bfg.customer.Address" scope="session"/> <jsp:useBean id="ordercredit" class="com.bfg.customer.CreditCard" scope="session"/> <HEAD> <TITLE>Final Confirmation</TITLE> </HEAD> <BODY> <%@ include file="/jsp/includes/bfgheader.jsp" %> <jsp:useBean id="cart" class="com.bfg.cart.Cart" scope="session"/> <CENTER><H1>Final Confirmation</H1></CENTER> <FORM METHOD="POST" ACTION="authorizePurchase.jsp"> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" |
I l @ ve RuBoard |