Please help with logic:iterate
Hi I have the following code in reset method
ArrayList a=new ArrayList();
int i=0;
for(i=0;i<10;i++)
{
a.add(i,"abcd"+i);
}
request.setAttribute("mytest",a);
*************************************************
In the JSP code I have
<logic:iterate id="output" name="mytest">
Output is <bean:write name="output"/>
</logic:iterate>
I get the error
org.apache.jasper.JasperException: Cannot find bean output in any scope
Please help me!!! What should I do to print the value on the screen.

