C
ctyberg
I'm trying to re-write this line using c
ut.
<%request.setAttribute( "view", session.getAttribute("EntityReport"));
%>
I know that my object is there because the line below works. I see my
object's class name...
<c
ut value="${sessionScope.EntityReport}"/>
Then I assign it to the variable "view".
<c:set var="view" scope="request"
property="${sessionScope.EntityReport}"/>
But then I can't see it anymore. The line below does not show the
object's class name.
View: <c
ut value="${view}"/>
Any ideas?
<%request.setAttribute( "view", session.getAttribute("EntityReport"));
%>
I know that my object is there because the line below works. I see my
object's class name...
<c
Then I assign it to the variable "view".
<c:set var="view" scope="request"
property="${sessionScope.EntityReport}"/>
But then I can't see it anymore. The line below does not show the
object's class name.
View: <c
Any ideas?