struts中用tiles框架,一个jsp页面(main.jsp)由a.jsp和b.jsp组成。
b.jsp页面中有一个formbean,如下
<html:form action="deal.do">
<html:text name="FormName" property="age" size="8" maxlength="10"/>
save button 
</html:form>a.jsp页面只是显示数据的,没有action和formbean
<html:text name="FormName" property="sex" size="2" maxlength="4"/>按下main.jsp页中的save button只能保存b.jsp中的age值,a.jsp中的sex值无法保存,
如何才能实现,按下save button能保存a和b页面中的值呢?