📄 catalog.jsp
字号:
<html>
<head>
<title>URS Course Catalog Page</title>
</head>
<%@ page errorPage="error.jsp" %>
<%@ page import="java.util.*,day21ex.course.CourseItem"%>
<h3><a href="/ursday21ex/cart.jsp">View your enrollment cart</a></h3>
<h3><a href="/ursday21ex/URSControllerServlet?pageName=enrollmentPage">View your current enrollments</a></h3>
<h3>Please choose from the following courses.</h3>
<table border=1>
<tr>
<th><b>Course Name</b></th>
<th><b>Fee</b></th>
<th><b>Action</b></th>
</tr>
<%
Vector courseItemList
= (Vector)session.getAttribute("courseItemList");
if ( courseItemList != null ) {
int size=courseItemList.size();
CourseItem item=null;
for(int i=0; i<size;i++){
item=(CourseItem)courseItemList.elementAt(i);
%>
<tr>
<td><%=item.getName()%></td>
<td align="right" ><%=java.text.NumberFormat.getCurrencyInstance().format(item.getFee())%></td>
<td><a href="/ursday21ex/URSControllerServlet?pageName=catalogPage&buy=<%=item.getCourseId()%>">Add to cart</a></td>
</tr>
<%
}
}
%>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -