Codice completo

Listato 5. Servlet allProds.jsp

<%@ page import="java.util.*,it.html.shop.*" language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Lista prodotti disponibili</title>
</head>
<body>
<h1>Lista prodotti disponibili</h1>
<table>
  <tr>
    <th>ID</th>
    <th>Titolo</th>
    <th>Prezzo (Eu)</th>
  </tr>
  
  <%
    Collection prods=(Collection)request.getAttribute("list");
    Iterator it=prods.iterator();
    while (it.hasNext()){
      Product tmp=(Product)it.next();
      %>
      <tr>
        <td><a href="Controller?op=addCart&ID=<%=tmp.getId()%>">Aggiungi</a></td>
        <td><%=tmp.getTitle()%></td>
        <td><%=tmp.getCost()%></td>
      </tr>
      <%
    }
  %>
  
</table>
</body>
</html>