Posted By:
andrea_lorena
Posted On:
Wednesday, May 21, 2003 11:33 AM
I'm working with hashmap that I send to one jsp, the content of this hashmap are dtos. Use tag logic:iterate but appears to me the following error that I do not know to what it talks about: "ERROR EN PAGINA JSP : Cannot create iterator for this collection" and the code in jsp page is the following: <% pageContext.setAttribute("edadesSexo", dto.get("edades")); %> <% interfaz.GenericDto dtoEA = (interfaz.GenericDto)dtoi; %> <% if (dtoEA != null){ %> <%= dtoEA.get("edad")%> <%= dtoEA.get("ctotal")%> <% }; %> thanks, ve
More>>
I'm working with hashmap that I send to one jsp, the content of this hashmap are dtos. Use tag logic:iterate but appears to me the following error that I do not know to what it talks about:
"ERROR EN PAGINA JSP : Cannot create iterator for this collection"
and the code in jsp page is the following:
<% pageContext.setAttribute("edadesSexo", dto.get("edades")); %>
<% interfaz.GenericDto dtoEA = (interfaz.GenericDto)dtoi; %>
<% if (dtoEA != null){ %>
<%= dtoEA.get("edad")%>
<%= dtoEA.get("ctotal")%>
<% }; %>
thanks, very much!!
and