Sri wrote: > You *should* be able to do > <html:radio property="key" value="<%=resView.getKey()%>"/> > I am doing it in my application (yes, within an iteration). > I would, in addition, set the type attribute for the <logic:iterate> > to the fully qualified class name of the object in each iteration (resView).
Okay, now I have: <logic:iterate id="resView" name="foundPersons" type="edu.asu.vpia.value.ResolutionView"> <html:radio property="key" value="<%=resView.getKey()%>"/> <bean:write name="resView" property="key" filter="true"/> Same error. org.apache.jasper.JasperException: Cannot find bean under name org.apache.struts.taglib.html.BEAN (And it's definitely the <html:radio> tag, because if I comment it out, the page loads fine without radio buttons.) It seems to me that <logic:iterate> isn't putting that resView bean in a place that the scriptlet can find it. -- Wendy Smoak http://sourceforge.net/projects/unidbtags