JSP Session: Exemple d’ajout des produits dans un panier February 17, 2014 Author: user //Fichier: carts.html carts Please enter item to add or remove: Add Item: Beavis & Butt-head Video collection X-files movie Twin peaks tapes NIN CD JSP Book Concert tickets Love life Switch blade Rex, Rugs & Rock n' Roll ///////////////////////////////////////////////////////////////////////// //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" %> Categories: Uncategorized