Thakkar, Hetal wrote:
I am trying to use while. But unfortunately, I could not find any example on Jelly's website. Could anyone let me know, how "while" constuct works in Jelly?

I tried the following but it does not work:

<j:set var="iterations" value="${3}"/>                        
<j:while test="${iterations} > 0">
        <j:set var="iterations" value="${iterations - 1 }"/>
        <log:info>${iterations}</log:info>
</j:while>

Hetal,


I would either use
 test="iterations > 0"

or
 test="${iterations > 0}"

but I think the first is correct...

Paul


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



Reply via email to