> <html:img src="../images/new.png" alt="<bean:message 
> key="img.new"/>" width="24" height="24" /> </html:link>

You can't nest tags like this. It's not a limitation of Struts, it's the way
tags are defined and the way they work.

For many problems like this, you can get around it by using the EL version
of the tags, but in this case you're trying to read something from a
resource bundle so it's a  bit more complex. But you can do something like
this using JSTL:

<fmt:message key="${img.new}" var="myvar"/>
<html-el:img src="../images/new.png" alt="${myvar}" width="24" height="24"/>

--
Tim Slattery
[EMAIL PROTECTED]


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

Reply via email to