Hai all.What is the use of <logic:iterate>tag in struts
application.
Answer Posted / sai
<logic:iterate> repeats the nested body content of this tag
over a specified collection.
Ex:
<logic:iterate id="customer" name="customers">
<tr>
<td><bean:write name="customer" property="firstname"/></td>
<td><bean:write name="customer" property="lastname"/></td>
<td><bean:write name="customer" property="address"/></td>
</tr>
</logic:iterate>
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of @before annotation?
How is forward action used for integration?
How can we group related actions in one group in Struts?
When should we use SwtichAction?
Why we use struts in java?
What are the main classes which are used in struts application?
Is struts compatible with other java technologies?
Explain about how requests from the client are sent?
What is s token?
How are interceptors and servlet filters different?
Why is action servlet a singleton in struts?
Briefly tell the two kinds of form beans.
What is the purpose of @conversion?
How does struts2 token work?
Explain the core end goal while using java struts?