R
Robert Mark Bram
Hi All,
I have the following:
<jsp:include page="anotherPage.jsp">
<jsp
aram name="portletResponse" value="sdfasdfsd"/>
</jsp:include>
And in anotherPage.jsp I have:
<%@ taglib uri="/WEB-INF/tld/commons-log.tld" prefix="log" %>
<log:dump scope="request"/>
<log:dump scope="session"/>
<log:dump scope="page"/>
<log:dump scope="application"/>
<h3>
Test: <%= request.getParameter("testing") %>
</h3>
Not only does this output:
Test: null
but I don't see 'testing' anywhere in the dumps! What is going wrong?
Have I badly misunderstood parameter sending? :-/
Any assistance would be most appreciated!
Rob

I have the following:
<jsp:include page="anotherPage.jsp">
<jsp
</jsp:include>
And in anotherPage.jsp I have:
<%@ taglib uri="/WEB-INF/tld/commons-log.tld" prefix="log" %>
<log:dump scope="request"/>
<log:dump scope="session"/>
<log:dump scope="page"/>
<log:dump scope="application"/>
<h3>
Test: <%= request.getParameter("testing") %>
</h3>
Not only does this output:
Test: null
but I don't see 'testing' anywhere in the dumps! What is going wrong?
Have I badly misunderstood parameter sending? :-/
Any assistance would be most appreciated!
Rob