Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

The Struts iterator tag is used to generate a loop that iterates over each item in a collection. In the thankyou.jsp is this markup.

Code Block
html
html
1thankyou.jsp Struts iterator Taghtml
<table style="margin-left:15px">
	<s:iterator value="personBean.carModels">
		<tr><td><s:property /></td></tr>
	</s:iterator>
</table>

...