Hi, I am developing an internationalized program using struts, and am using <bean:message> tags to display copy in different languages.
On my site index page, I'd like to use the <template:put> tag on line 4 below to insert my locale specific page title. It seems that struts does not support this. Is there a workaround to this problem? index.jsp..... 1. <%@ taglib uri='/WEB-INF/struts-template.tld' prefix='template' %> 2. <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> 3. <template:insert template='/template/template.jsp'> 4. <template:put name='title' content='<bean:message key="index.title"/>'/> 5. <template:put name='advert' content='advert here' direct='true'/> 6. <template:put name='nav' content='/inc/nav.jsp'/> 7. <template:put name='body' content='body here' direct='true'/> 8. </template:insert> Any help would be greatly appreciated, Phil, Chamonix, France -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

