Hi I'm new to Tiles and I'm trying get some basic stuff working but I'm having a problem passing attributes. My definition XML file looks like this:
<tiles-definitions> <definition name=3D"mainTemplate" path=3D"/mainTemplate.jsp" > <put name=3D"Section" value=3D"/partfetch"/> <put name=3D"TopMenu" value=3D"/includes/inc_TopMenu.jsp" /> <put name=3D"Body" value=3D"/inc_PartDetails.jsp" /> <put name=3D"Footer" value=3D"/includes/inc_Footer.jsp" /> </definition> </tiles-definitions> Now I'm trying to get the value of the "Section" attribute in the inc_Footer.jsp but I get the following error: [ServletException in:/includes/inc_Footer.jsp] Error - tag useAttribute: attribute 'Section' not found in context. Check tag syntax'=20 What am I doing wrong? Thanks Max

