--- Meka Struts <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> * I have an ArrayList which contains objects of type Strings. 
> * This ArrayList is being set in the view
> 
> Can somebody tell me how can i iterate the ArrayList present in the
> View?

Using the JSTL:
<c:forEach var="myVar" items="${ArrayList}">
    <c:out value="${myVar}"/>
</c:forEach>

David

> 
> *  I have implemented iterate tag on ArrayList containing some
> BussinessObjects (BO's), and the ArrayList was set into the session
> using 
> 
> session.setAttribute("ArrayList", alObj);
> 
> Regards,
> 
> MekaToka


__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to