summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/EJB 3.0 Code/Gerald Examples/src/examples/shop/web/jsp/clearQuote.jsp
blob: 0c13d29bde0b96d5ec8112f6ce9bddc32fba7420 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<%-- When user clicks on clear cart button, servlet forwards request to this jsp --%>
<html>
    <head><title>Jasmine's Clear Cart page</title></head>
    
    <BODY>
        <jsp:include page="title.jsp" />
        <font size="+2"><strong>You just cleared your Cart!</strong></font>
        <br>&nbsp;
        <br>
        <center>
            <a href="/jasmine/wsf.jsp">Back to the main page</a>
        </center>
        <jsp:include page="footer.jsp" />
    </BODY>
</html>