The RSTL is a library of REL tags providing standard functionality such as iterating collections, conditionals, imports, assignments, XML XSLT transformations, formatting dates, etc. RSTL distributable is available on my Google Code page under REL Standard Tag Library . Always use the latest JAR . This post describes each RSTL tag in the library explaining its functionality, attributes and providing examples. For understanding the way expressions are evaluated, please read my post about the Expression Language used by REL Standard Tag Library . <c:choose> / <c:when> / <c:otherwise> Syntax: <c:choose> <c:when test="expr1"> Do something </c:when> <c:when test="expr2"> Do something else </c:when...
talk is cheap. show me the code.