I have the following in my tiles definition files <definition name="main.Parent" path="/x/y.jsp" > <put name="TopMenu" value="${TopMenu}" /> <put name="Footer" value="${Footer}" /> </definition>
I would like to use definitions as ActionForwards <action path="/test" type="org.apache.struts... <forward name="success" path=".main.Parent"/> </action> My question would it be possible to include values to passed to ${TopMenu} and ${Footer} in <forward name="success" path=".main.Parent"/> of the action? Thank you all