| 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}" /> <c ut 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
|
|
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
|
|
I see no loop in your code. Please read this and please read this.
|
 |
 |
|
|
subject: how to do conditional looping?
|
|
|