This page last changed on Feb 17, 2006 by graeme.rocher@gmail.com.
Tag - while
Description
Executes a condition in a loop until the condition returns false
Parameters
- test - The conditional expression
Examples
<g:while test="${i < 5}">
<%i++%>
<p>Current i = ${i}</p>
</g:while>
|