problem while using <logic:iterate> tag
hi,
I am having one problem while trying to use <logic:iterate> tag inmy jsp
i am using it as follows:-
<logic:iterate id ="listvo" name="users">
<tr>
<td>
<bean:write name="listvo" property="firstname"/>
</td>
</tr>
</logic:iterate>
what i am doing is setting one ArrayList in request scope and in that arraylist i am adding one object of
a class "uservo" in which there are some properties like:-firstname,lastname etc of user
what i am getting error is that:--
org.apache.jasper.JasperException: Cannot find bean: "listvo" in any scope
Please give me any possible solutions
thnak you
|