>>>>> "Henri" == Henri Yandell <[EMAIL PROTECTED]> writes:

    Henri> I'd like to do the following:

    Henri> <jsp:forward page="somePage.jsp">
    Henri>   <jsp:param name="id" value="${param.id}"/>
    Henri> </jsp:forward>

    Henri> Now, obviously this is not going to work until JSP 2.0.

    Henri> So then there's the next step of:

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

    Henri> Which due to the order of parsing also fails to work. [This has come up
    Henri> enough on this list].

    Henri> Now, my question is, is there anyway around this?
    Henri> Apart from the obvious: <% request.getParameter("id") %>.

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>

-- 
===================================================================
David M. Karr          ; Java/J2EE/XML/Unix/C++
[EMAIL PROTECTED]   ; SCJP



--
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