Am Samstag, 19. MÃrz 2005 12:36 schrieb Robert Mark Bram:
> ==
> <%@ taglib uri="/WEB-INF/tld/c.tld" prefix="c" %>
> <html>
> <body bgcolor="white">
>       <c:set var="message" value="Hi there!"/>
>       <c:out value="6. ${message}"/><br/>
>       <c:out value="7. ${'message'}"/><br/>
>       <b>Parameter values passed to this page for each parameter: </b>
>       <c:forEach var="current" items="${param}">
>               <b><c:out value="${current.key}" /></b>
>               <c:forEach var="aVal" items="${paramValues[current.key]}">
>                       <c:out value="${aVal}" />
>               </c:forEach>
>       </c:forEach>
> </body>
> </html>
> ==
>
> But the result is this:
>
> ==
> 6. ${message}
> 7. ${'message'}
> Parameter values passed to this page for each parameter:
> ${current.key}        ${aVal}
> ==
>
> Is it possible that my jsp code is not being interpreted?
>
Does the deployment descriptor of yout web-app declare conformance to the 
Servlet-API spec 2.4 - i. e. does it contain something like

<web-app xmlns="http://java.sun.com/xml/ns/j2ee";
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd";
    version="2.4">
?

Regards
mks

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

Reply via email to