Hi, I'm looking at Tiles for the first time. Is it possible to use the MessageTag to name components of a Tile? I know you can't nest tags, but does tiles provide a way to acomplish the following functionality?:
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> <%@ taglib uri="/WEB-INF/tiles.tld" prefix="tiles" %> <tiles:insert page="<bean:message key="home.layout"/>" flush="true"> <tiles:put name="title" value="<bean:message key="home.title"/>" /> <tiles:put name="header" value="<bean:message key="home.header"/>" /> ...etc </tiles:insert> Thanks, Craig