On 7 Nov 2002, David M. Karr wrote:

> Just use different quotes at the other level:
>
>  <jsp:forward page="somePage.jsp">
>    <jsp:param name="id" value='<c:out value="${param.id}"/>'/>
>  </jsp:forward>

Nope, not happy. I had:

<jsp:forward page='<c:out value="${param.goto}"/>'>
  <jsp:param name="id" value='<c:out value="${param.id}"/>'/>
</jsp:forward>

[which was working as:
<c:redirect url="${param.goto}">
  <c:param name="id" value="${param.id}"/>
</c:redirect>
]

and I get an error of:

message /<c:out value="${param.goto}"/>
description The requested resource (/<c:out value="${param.goto}"/>) is not available.

So it's not parsing the inside of page attribute for jstl I guess. [I
flipped the ' and " just in case. Figured it wouldn't hurt :) ]

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