On 7 Nov 2002, David M. Karr wrote:

> Shouldn't it be the following instead?
>
>  <c:if test="${!empty param.one}">
>  FOOO
>  </c:if>
>
>  <c:choose>
>   <c:when test="${!empty param.two}">
>     <c:out value="BING"/>
>   </c:when>
>   <c:when test="${!empty param.one}">
>     <c:out value="BONG"/>
>   </c:when>
>   <c:otherwise>
>     <c:out value="BANG"/>
>   </c:otherwise>
>  </c:choose>

Ah, classic empty-string vs null in request parameter thing. Thanks for
setting me straight David.

Hen


--
To unsubscribe, e-mail:   <mailto:taglibs-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:taglibs-user-help@;jakarta.apache.org>

Reply via email to