Advertisement
Guest User

Jstltest

a guest
May 2nd, 2017
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  3. <html lang="en" \>
  4. <head>
  5. <meta charset=\"UTF-8\">
  6. <title>Shopping cart</title>
  7. <style>
  8. table, th, td {
  9. border: 1px solid black;
  10. border-collapse: collapse;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <c:choose>
  16. <c:when test="${cart!=null}">
  17. <table>
  18. <tr>
  19. <th>Name</th>
  20. <th>Amount</th>
  21. <th>Price</th>
  22. </tr>
  23. <c:forEach items="${cart}" var="item">
  24. <tr>
  25. <td>${item.name}</td>
  26. <td>${item.amount}</td>
  27. <td>${item.price}</td>
  28. </tr>
  29. </c:forEach>
  30. </table>
  31. </c:when>
  32. </c:choose>
  33. ${error}<br>
  34. ${compelte}<br>
  35.  
  36. <form action="/restricted/mainpage.jsp">
  37. <input type="submit" value="Back to main page"/>
  38. </form>
  39. <br/>
  40. <form action="clearCart" method="post">
  41. <input type="submit" value="Clear cart"/>
  42.  
  43. </form>
  44. <br/>
  45. <form action="makeOrder" method="post">
  46. <input type="submit" value="Make an order">
  47. </form>
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement