receipt.jsp

来自「一本关于EJB的书」· JSP 代码 · 共 19 行

JSP
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>
   </body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?