> iterator into page context
so try this:
jspContext.getAttribute("myAtt ");
leftkaren wrote:
>
> Hello, all
>
> Sorry for sending my email twice, I found something wired.
>
> Document from http://struts.apache.org/2.x/docs/generator.html
> tell us:
> var - The name to store the resultant iterator into page context, if
> such
> name is supplied
>
> but:
> <s:generator val="%{'aaa,bbb,ccc,ddd,eee'}" count="4" separator=","
> var="myAtt" />
> <%
> java.util.Iterator i = (java.util.Iterator) request.getAttribute("myAtt
> ");
> while(i != null && i.hasNext()) {
> String s = (String) i.next(); %>
> <%=s%> <br/>
> <% }
> %>
>
> is right, and if I use pageContext.getAttribute("myAtt"); I got null.
> Is there something wrong with my code?
>
>
>
> Karen
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>
>
--
View this message in context:
http://www.nabble.com/about-s%3Agenerator-%28struts-2.1.8%29---new-information-tp25934754p25934910.html
Sent from the Struts - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]