catalog.jsp
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. <html>
  2. <head>
  3.   <title>URS Course Catalog Page</title>
  4. </head>
  5. <%@ page errorPage="error.jsp" %>
  6. <%@ page import="java.util.*,day21ex.course.CourseItem"%>
  7.  
  8. <h3><a href="/ursday21ex/cart.jsp">View your enrollment cart</a></h3>
  9. <h3><a href="/ursday21ex/URSControllerServlet?pageName=enrollmentPage">View your current enrollments</a></h3>
  10. <h3>Please choose from the following courses.</h3>
  11. <table  border=1>  
  12.    <tr>
  13.      <th><b>Course Name</b></th>      
  14.      <th><b>Fee</b></th>
  15.      <th><b>Action</b></th>
  16.    </tr>
  17.     <%
  18.       Vector courseItemList 
  19.           = (Vector)session.getAttribute("courseItemList");
  20.       if ( courseItemList != null ) {
  21.         int size=courseItemList.size();
  22.         CourseItem item=null;
  23.         for(int i=0; i<size;i++){
  24.           item=(CourseItem)courseItemList.elementAt(i);
  25.     %>
  26.      <tr>
  27.         <td><%=item.getName()%></td>
  28.         <td align="right" ><%=java.text.NumberFormat.getCurrencyInstance().format(item.getFee())%></td>        
  29.         <td><a href="/ursday21ex/URSControllerServlet?pageName=catalogPage&buy=<%=item.getCourseId()%>">Add to cart</a></td>
  30.      </tr>
  31.      <%
  32.          }
  33.        }
  34.      %>
  35. </table>
  36. </body>
  37. </html>