📄 cart.jsp
字号:
<html>
<head>
<title>Enrollment Cart Page</title>
</head>
<%@ page errorPage="error.jsp" %>
<%@ page import="java.util.*,day21ex.course.CourseItem"%>
<h3>Your enrollment cart</h3>
<table border=1>
<tr>
<th><b>Course Name</b></th>
<th><b>Fee</b><th>
</tr>
<%
Collection cartItemList
= (java.util.Collection)session.getAttribute("cartItemList");
if ( cartItemList != null ) {
Iterator it = cartItemList.iterator();
while( it.hasNext() ) {
CourseItem item=null;
item=(CourseItem)it.next();
%>
<tr>
<td><%=item.getName()%></td>
<td align="right" ><%=java.text.NumberFormat.getCurrencyInstance().format(item.getFee())%></td>
</tr>
<%
}
}
%>
</table>
<a href="/ursday21ex/URSControllerServlet?pageName=orderPage" >Place Order</a>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -