2008/1/22, Lee Theobald <[EMAIL PROTECTED]>:
> header.jspf
> -----------------
> <h1>HEADER</h1>
> <c:set var="test" value="Wibble"/>
> <p>Test = <c:out value="${test}"/></p>
> <h3>Params</h3>
> <dl id="requestvars" style="display:none;">
> <c:forEach var='parameter' items='${paramValues}'>
> <dt>${parameter.key}</dt>
> <c:choose>
> <c:when test="${empty parameter.value[0]}">
> <dd> </dd>
> </c:when>
> <c:otherwise>
> <dd>${parameter.value[0]}</dd>
> </c:otherwise>
> </c:choose>
> </c:forEach>
> </dl>
Ahhh ok! Now I understand :-)
You have to use the taglib directive in each JSP file you use it (in
your case, in header.jspf)
It's a JSP specification.
Antonio