Dear Struts-User,

In all the Struts-Tiles examples, I see the following piece of code for
Tiles, e.g. for my "/about.jsp" page:

<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>
<tiles:insert page="/layouts/classic.jsp" flush="true">
  <tiles:put name="title"  value="A very English Title!" />  <---- this is
not international!
  <tiles:put name="header" value="/common/header.jsp" />
  <tiles:put name="menu"   value="/common/menu.jsp" />
  <tiles:put name="body"   value="/pages/about.jsp" />
  <tiles:put name="footer" value="/common/footer.jsp" />
</tiles:insert>

In my application, the page titles are kept in the Application.properties
file so that they can be translated.

How can I put the results of <bean:message key="my.page.title" /> into the
above scenario?

Many thanks,
Derek



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

Reply via email to