I'd like to do the following:
<jsp:forward page="somePage.jsp">
<jsp:param name="id" value="${param.id}"/>
</jsp:forward>
Now, obviously this is not going to work until JSP 2.0.
So then there's the next step of:
<jsp:forward page="somePage.jsp">
<jsp:param name="id" value="<c:out value="${param.id}"/>"/>
</jsp:forward>
Which due to the order of parsing also fails to work. [This has come up
enough on this list].
Now, my question is, is there anyway around this?
Apart from the obvious: <% request.getParameter("id") %>.
Hen
--
To unsubscribe, e-mail: <mailto:taglibs-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:taglibs-user-help@;jakarta.apache.org>