I'm trying to do something like this in a portlet:
<jsp:include page="include/mypage.jsp">
<jsp:param name="jeffstest" value="15"/>
</jsp:include>
And then in mypage.jsp:
jeffstest = <c:out value="${param.jeffstest}"/>
This works fine if I hit the jsp directly, but doesn't work inside the
portal. I've also tried the jstl way of:
<c:import url="include/mypage.jsp">
<c:param name="jeffstest" value="15"/>
</c:import>
Does anyone know how I can get the param passed? The page is included
okay, but the param does not show up in any scope. It does show up if
I do a <%=request.getQueryString()%> but that doesn't really help me.
Thank you,
-- Jeff Sheets
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]