up vote 0 down vote favorite
share [g+] share [fb]

I need to find the size of the JSTL and write it to end="size of the feed " at the following code. Could you please help me how to find the size of the feed?

Regards Altaico

<x:forEach begin="0" end="4" var="story"
           select="$doc/rss/channel/item" varStatus="status">
//end = "size of the rss" 
link|improve this question
feedback

1 Answer

Just don't specify start and end and every item will be iterated.

<x:forEach var="story"
    select="$doc/rss/channel/item" varStatus="status">
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.