I should also point out that if I treat the whole page as a JSP 2.0 tag (which I'm currently doing, until I resolve the JSP/Struts issue), it works. That is, if instead of having:

<html:form action="/admin/customer/post.do">
   <div id="editPage">
       <tiles:insert attribute="pageBody" beanScope="request"/>
   </div>
</html:form>

I have:

<html:form action="/admin/customer/post.do">
   <div id="editPage">
       <jsp:doBody/>
   </div>
</html:form>

Then the html:input tags contained within the body (provided by jsp:doBody) are perfectly able to find the form bean of the parent html:form, unlike in the JSP version. I can't determine what the difference might be, unless it is to do with scope.

John


-- ============================================== John Moore - Norwich, UK - [EMAIL PROTECTED] ==============================================

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to