How do you set an object into the request? If this were java, I would do something like this...
on one page..
request.setAttribute("myObject",Object); //set Object into the request object.
<jsp:include page="pg2.jsp" flush="true" /> //include pg2.jsp(similar to php include)
on second page(pg2.jsp)
Object obj=(Object)request.getAttribute("myObject"
; //get the object back out so I can use it.
I'm yet to find an example of how to set an object into the request and then try to get it back on another page.
on one page..
request.setAttribute("myObject",Object); //set Object into the request object.
<jsp:include page="pg2.jsp" flush="true" /> //include pg2.jsp(similar to php include)
on second page(pg2.jsp)
Object obj=(Object)request.getAttribute("myObject"

I'm yet to find an example of how to set an object into the request and then try to get it back on another page.