summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/EJB 3.0 Code/Gerald Examples/src/examples/shop/web/jsp/emptyQuote.jsp
blob: f0779bd5c1793d02b6d3a7711877822f053bdd3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<%-- If shopping cart is empty and user clicks on shopping cart link, servlet forwards request to this jsp --%>
<html>
 <head><title> Jasmine's Empty Cart page</title></head>
    <BODY>
         <jsp:include page="title.jsp" />
        <font size="+2">Your Cart is empty.</font>
        <br>&nbsp;
        <br>
        <center>
            <a href="/jasmine/wsf.jsp">Back to the web storefront.</a>
        </center>
        <jsp:include page="footer.jsp" />

    </BODY>
</html>