Advertisement
Guest User

Untitled

a guest
May 27th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <%
  2. producto productoEnCarro = (producto) session.getAttribute("productoEnCarro");
  3. %>
  4. <div id="carro">
  5. <table id="tablaCarrito">
  6. <tr><th>Nombre</th> <th>Precio</th> <th> Unidades </th></tr>
  7. <tr>
  8. <td> <%=productoEnCarro.getNombre()%> </td>
  9. <td> <%=productoEnCarro.getPrecio()%> </td>
  10. <td> <%=productoEnCarro.getCantidad()%> </td>
  11. </tr>
  12.  
  13. </table>
  14. <input type="submit" value="Continuar Comprando" onclick="Cargar('productos.jsp','capa1')">
  15. <input type="submit" value="Ver carrito de la compra" onclick="Cargar('tienda.jsp','capa1')">
  16. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement