%@ page language="java" contentType="text/html" %>
<%@ page import="java.text.*" %>
<%@ taglib uri="/orataglib" prefix="ora" %>
Product Catalog
Product Catalog
Please select a book from our catalog to read more about it and
decide if you like to purchase a copy:
<%--
Generate a list of all products with links to the product page.
--%>
<%-- Show the contents of the shopping cart, if any --%>
<%
if (!cart.isEmpty()) {
NumberFormat numFormat = NumberFormat.getCurrencyInstance();
%>
Your shopping cart contains the following items:
| <%= product.getName() %> |
<%= numFormat.format(product.getPrice()) %> |
|
| Total: |
<%= numFormat.format(cart.getTotal()) %> |
<% } %>