Display A User's Items (cont)
  • Java code (continued)
    • Loop over Item enumeration
    • For each item get the amount of the maximum bid and the date
  • JSP <% close tag switches back to HTML mode
    • <tr> tag for row in item display table
    • <td> tags for data
  • JSP <%= tag used to substitute Java values into output stream
  • Each iteration of the loop outputs a row of the table
  • Each row contains values from one item

Next Slide >>