The De Post/PMC excercises (and the Struts blank sample application) are based on
- Struts
- tags-bean
- tags-logic
- tags-html
 
- JSP scriptlets
- Struts
- tags-html
 
- JSTL
- JSP expression language
<c:forEach  var="product" items="${List}"  varStatus ="status">
  <tr class="${(status.index%2==1)?'odd':'even'}">
    <td>
      <html:link action="<%=modify%>" paramId="id" paramName="product" paramProperty="id">
        <html:img srcKey="icon.edit" altKey="icon.alt.edit" border="0"/>
      </html:link> 
    </td> 
    <td>
      <html:link action="<%=remove %>" paramId="id" paramName="product" paramProperty="id">
        <html:img srcKey="icon.trash" altKey="icon.alt.trash" border="0"/>
      </html:link>
    </td>
    <td> ${product.name}</td> 
    <td> ${product.description}</td>
  </tr>
</c:forEach>
 
 
 Posts
Posts
 
 
No comments:
Post a Comment