aspose file tools
The moose likes JSP and the fly likes how to do conditional looping?  Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "how to do conditional looping?  " Watch "how to do conditional looping?  " New topic
Author

how to do conditional looping?

CN
Greenhorn

Joined: Jul 25, 2008
Posts: 6
let say, i have qty. how to loop, as long as qty not equal to 0


<c:set var="i" value="5" />
<c:if test="${i!=0}">
<c:set var="i" value="${i-1}" />

<cut value="${i}" />
</c:if>



the code above only cout 4,
not 4,3,2,1

Please correct my mistake..
I'm using JSTL
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56205
    
  13

Originally posted by Chen Nee Lim:
let say, i have qty. how to loop, as long as qty not equal to 0

Please use real words when posting to the forums. Abbreviations such as "qty" in place of whatever it is supposed to stand for (quantity?) only serve to make your posts more difficult to read and less likely to generate useful responses.

Please read this for more information.

thanks,
bear
JavaRanch sheriff


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56205
    
  13

I see no loop in your code.

Please read this and please read this.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: how to do conditional looping?
 
Similar Threads
Pagination in jsp
How can I c:set an int in my JSP?
Help required for forEach tag
found String rquired int
how to overwrite a request param?