HI,
I have these lines in my jsp
<logic:iterate id="courseDetailsLocal" name="employeeDetailsForm"
property="courseDetails">
<tr>
<td><bean:write name="courseDetailsLocal"
property="name"/></td>
</tr>
</logic:iterate>
when the jsp is executed, it throws an error "Cannot find bean
courseDetailsLocal in any scope."
Why is it happening so? I have imported taglib in my jsp.
The setter/getter methods for courseDetails in EmployeeDetailsForm are
private CourseDetailsForm courseDetailsFormArray[] = new
CourseDetailsForm[50];
public void setCourseDetails(int iIndex, CourseDetailsForm
courseDetailsForm)
{
courseDetailsFormArray[iIndex] = courseDetailsForm;
}
public CourseDetailsForm[] getCourseDetails()
{
return courseDetailsFormArray;
}
KP