summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/EJB 3.0 Code/Gerald Examples/src/examples/shop/web/jsp/receipt.jsp
blob: 448a26bd78158ddbad7ccfef1caf8a5ae7997292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<%--This JSP displays order confirmation. When user clicks on order button,
    Order will be created in the database and order confirmation number will be 
    displayed to the customer. 
 --%>
<html>
   <head><title> Jasmine's Order Confirmation page </title></head>
   <body>
        <jsp:include page="title.jsp" />
        <jsp:directive.page errorPage="error.jsp" />
	<%-- Retrieves Order Id from request object and displays.--%>
        <h3>Thank you for shopping with us.
        <p>Your order number is <%=request.getAttribute("orderID")%>
        <p>Please shop with us again soon!
        </h3>
        <p><i><a href="/jasmine/wsf.jsp">Click here to return to the main page.</a></i>
        <jsp:include page="footer.jsp" />
   </body>
</html>