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, sfsbsample.ScheduleVO"  %>
  3. <html>
  4. <body>
  5. <table border="5">
  6. <caption><font size="4">Search results of Java courses </font></caption>
  7. <tr>
  8. <th>Schedule ID</th>
  9. <th>Course Title</th>
  10. <th>Location</th>
  11. <th>Start Date</th>
  12. <th>End Date</th>
  13. <th>Cost</th>
  14. <th>Status</th>
  15. <th>Option</th>
  16. </tr>
  17. <%    if (request.getAttribute("vec") != null)
  18. {
  19. Vector vList = (java.util.Vector) request.getAttribute("vec");
  20. try
  21.       {
  22.    for( int i=0; i< vList.size(); i++ )
  23. {
  24.           ScheduleVO schedule  = (ScheduleVO) vList.elementAt(i);
  25. %>
  26. <tr>
  27. <td><%=schedule.getScheduleID()%></td>
  28. <td><%=schedule.getCourseTitle()%></td>
  29. <td><%=schedule.getLocation()%></td>
  30. <td><%=schedule.getStartDate()%></td>
  31. <td><%=schedule.getEndDate()%></td>
  32. <td><%=schedule.getCost()%></td>
  33. <td><%=schedule.getStatus()%></td>
  34. <td>
  35. <Form Action="shoppingcartclient" method="POST">
  36. <input type="hidden" name="requestAction" value="AddASchedule">
  37. <input type="hidden" name="ScheduleID" value="<%= schedule.getScheduleID() %>">
  38. <input type="submit" value="ADD to Cart">
  39. </form>
  40. </td>
  41. </tr>
  42. <%
  43.          }
  44. } catch(Exception e) {
  45.      System.out.println(" ******* exception "+e);
  46. }
  47. }
  48. %>
  49. </table>
  50. <p>
  51. <center>
  52. <a href="/WebApp3/shop.html">Show Search Result for Java training classes</a>
  53. </center>
  54. </body>
  55. </html>