ordercompleted.jsp
来自「《J2EE企业级应用开发》一书的配套源代码」· JSP 代码 · 共 21 行
JSP
21 行
<html><meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<%@ page contentType="text/html;charset=gb2312" errorPage="error.jsp"%>
<head>
<title>
welcome
</title>
<jsp:include page="header.jsp" flush="true"/>
<jsp:include page="sidebar.jsp" flush="true"/>
<jsp:useBean id="shoppingSession" scope="session" class="com.j2eeapp.cdstore.bean.ShoppingSession" />
<body>
<h2>
Order completed
</h2>
您的订单号为:<%=(String)request.getParameter("orderId")%>
<a href="login.jsp">继续购物</a>
<jsp:include page="footer.jsp" flush="true"/>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?