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

Java编程

开发平台:

Java

  1. <%@ page import="java.util.*" info="JavaCamp.com - DisplayCollection.jsp " %>
  2. <html>
  3. <body>
  4. <table border="5">
  5. <tr>
  6. <th>List of Primary Keys for company <font size="4"> <%=request.getAttribute("companyName")%></font>
  7. </th>
  8. </tr>
  9. <% ArrayList coll = (ArrayList)request.getAttribute("pKeyList");
  10. if ( !coll.isEmpty() )
  11. {
  12. Iterator it = coll.iterator();
  13. while (it.hasNext() )
  14. {
  15. bmpsample.StudentBmp stud = (bmpsample.StudentBmp)it.next();
  16. String pKey = (String) stud.getPrimaryKey();
  17. %>
  18. <tr>
  19. <td><%=pKey%> </td>
  20. </tr>
  21. <%
  22. }
  23. }
  24. else
  25. {
  26. %>
  27. <td>
  28. <h3> Empty collection </h3>
  29. </td>
  30. </tr>
  31. <%
  32. }
  33. %>
  34. </table>
  35. <p>
  36. <center>
  37. <a href="/Reg/Student.html">Add Another Student classes</a>
  38. </center>
  39. </body>
  40. </html>