receipt.jsp
来自「网上书店的简单实现版」· JSP 代码 · 共 29 行
JSP
29 行
<%@ page contentType="text/html; charset=gb2312" %>
<%@ include file="common.jsp" %>
<%@ page import="java.util.*" %>
<jsp:useBean id="cart" scope="session" class="mypack.ShoppingCart"/>
<%
bookDB.buyBooks(cart);
// Payment received -- invalidate the session
session.invalidate();
%>
<html>
<head><title>TitleReceipt</title>
<%@ include file="banner.jsp" %>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"><style type="text/css">
<!--
body {
background-color: #CCFF99;
}
-->
</style></head>
<h3><%=request.getParameter("cardname")%>:谢谢您使用网上资源调度系统。</h3>
<br>
<strong><a href="<%=request.getContextPath()%>/bookstore.jsp">继续申请</a> </strong>
</body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?