Hi

Use <c:forEach...> in the JSTL (Standard Taglib). This can use any Java
collection.

Best regards,
Eric

-----Original Message-----
From: Anthony Smith [mailto:[EMAIL PROTECTED]
Sent: Donnerstag, 15. Januar 2004 17:46
To: [EMAIL PROTECTED]
Subject: Loop Tags


I am fairly new to taglibs...

However as I start to create more jsps. I have decided to take advantage for

tags for better MVC compilancy and code re-use. I looked through the

standard tags, but did not see what I was looking for.

I am looking for tags that I can use for things like for loops and such.

Instead of doing things like:

<select name="stationId">

<option value="">Select a Station ID</option>

<%

for( int i = 0; i < locations.length; i++ )

{

%>

<option

value="<%=locations[i].value()%>"><%=locations[i].value()%></option>

<%

}

%>

</select>



Cleaning that code up even more where my for loop is in a tag. Where can I

find such a tag?


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

Reply via email to