No ... um ... no, you can't do that. There is a very good guide on things you might want to learn on the Struts resource page.
http://jakarta.apache.org/struts/resources/index.html Tip: You can't embed tags in scriplets because they won't be evaluated. You could replace your tag by just calling responseProcessForm.iterations (assuming that variable is in page scope). There are so many better ways to do this ... JSTL comes to mind Struts-EL comes to mind. If you're unfamiliar with what I'm talking about I would suggest you hit the URL above and start going through each resource in the order they suggest. Rea, Ron wrote: >Can I place a <bean:write> within a scriptlet? I tried this, but to no >avail: > ><% > for (int i = 0;i < <bean:write name="responseProcessForm" >property="iterations" filter="true"/>; i++) { >%> > -- Eddie Bush -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

