Hai all.What is the use of <logic:iterate>tag in struts
application.

Answers were Sorted based on User's Feedback



Hai all.What is the use of <logic:iterate>tag in struts application...

Answer / shirish

<logic:iterate> tag is used iterate over a collection in a
particular scope. The tag defines scope attribute which
defines the scope where to look for the collection. If not
defined following scopes are searched in order page,
request, session and application. This tag can also be used
to iterate over Maps and arrays.

Is This Answer Correct ?    18 Yes 1 No

Hai all.What is the use of <logic:iterate>tag in struts application...

Answer / naveen kumar t

If we assigned the resultset to any list or collection and
want to dispaly it on jsp this tag more useful

Is This Answer Correct ?    3 Yes 0 No

Hai all.What is the use of <logic:iterate>tag in struts application...

Answer / 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

More Struts Interview Questions

What is DynaActionForm?

0 Answers  


What is the role of action class in struts?

0 Answers  


What is life cycle of an interceptor?

0 Answers  


Give an alternative way to protect jsp’s with not much features from direct access.

0 Answers  


What is container struts2?

0 Answers  






how to write uploadphoto in the insert update delete using struts? write code struts and jsp jdbc

1 Answers  


how to develop the submit and search operations in single jsp using struts?

0 Answers   Wipro,


What is lookupdispatchaction?

0 Answers  


What is the purpose of @doublerangefieldvalidator annotation?

0 Answers  


What is struts actionmapping?

0 Answers  


Can we integrate struts with spring?

0 Answers  


What is the purpose of @intrangefieldvalidator annotation?

0 Answers  


Categories