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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | < 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 > |
No comments:
Post a Comment