<%@ include file="include/functions.jsp" %> <% main.title("Order CDs"); %> <%@ include file="include/header.jsp" %>

Welcome to DCA CDs

1) Start by adding your CDs here

Please place your order below

<% if (request.getMethod().equals("POST")) { try { if (request.getParameter("remove").equals("remove all items")) { functions.clearcart(request); } else { functions.setCD(request, response); } } catch(Exception e2) { functions.setCD(request, response); } } %> <% if ( functions.getCD(request, response) > 0) { %>

Shopping Cart

<% for (int list = 1; list < functions.getCD(request,response) + 1; list++) { try { out.print(session.getAttribute("quanity" + list).toString() + "x " + session.getAttribute("description" + list).toString() + "
"); } catch(Exception e3) { } } %>

<% } %>

"/> Product Code (you must enter a value)

"/> Description (you must enter a value)

"/> Unit Cost (for $22.95 please enter 22.95, for $29 please enter 29.00, max value 99999.00)

"/> Quantity (1 - 1000)


<% if(functions.getFormPass() == false) { %>

There was an error in your details, please make sure you have entered the data in the correct format

<% } %> <% if ( functions.getCD(request, response) > 0) { %>

2) Once you have finished adding your CDs

Click the submit button to continue with your order

<% } %> <%@ include file="include/footer.jsp" %>