//Fichier: carts.html
carts
/////////////////////////////////////////////////////////////////////////
//Fichier: carts.jsp
<%
cart.processRequest(request);
%>
You have the following items in your cart:
<%
String[] items = cart.getItems();
for (int i=0; i
- <% out.print(util.HTMLFilter.filter(items[i])); %>
<%
}
%>
<%@ include file ="carts.html" %>