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

Java编程

开发平台:

Java

  1. <%@ page contentType="text/html; charset=EUC_CN" %>
  2. <%@ page info="JavaCamp.com - ShowSearchResult.jsp " import="java.util.Vector, slsbsample.ScheduleVO"  %>
  3. <html>
  4. <title> Chapter 6 Search Schedule Sample Application</title>
  5. <body>
  6. <center>
  7. <h2> Chapter 6 Search Schedule Sample Application</h2>
  8. <table border="5">
  9. <caption><font size="4"> Search Result of Java Class Schedules</font></caption>
  10. <tr>
  11. <th>Schedule ID</th>
  12. <th>Course Title</th>
  13. <th>Location</th>
  14. <th>Start Date</th>
  15. <th>End Date</th>
  16. <th>Cost(US)</th>
  17. <th>Status</th>
  18. </tr>
  19. <%    if (request.getAttribute("vec") != null)
  20. {
  21. Vector vList = (java.util.Vector) request.getAttribute("vec");
  22. try
  23.       {
  24.    for( int i=0; i< vList.size(); i++ )
  25. {
  26.           ScheduleVO schedule  = (ScheduleVO) vList.elementAt(i);
  27. %>
  28. <tr>
  29. <td><%=schedule.getScheduleID()%></td>
  30. <td><%=schedule.getCourseTitle()%></td>
  31. <td><%=schedule.getLocation()%></td>
  32. <td><%=schedule.getStartDate()%></td>
  33. <td><%=schedule.getEndDate()%></td>
  34. <td>$<%=schedule.getCost()%></td>
  35. <td><%=schedule.getStatus()%></td>
  36. </tr>
  37. <%
  38.          }
  39. } catch(Exception e) {
  40.      System.out.println(" ******* exception "+e);
  41. }
  42. }
  43. %>
  44. </table>
  45. <p>
  46. <a href=SearchCourse.html>Search for Java Training classes</a>
  47. </center>
  48. </body>
  49. </html>