Any solution then? I tried Kumar's solution, but apparently it's not for Struts 1.0.2 because I got an error message saying the <bean:define> tag must be empty.
-----Original Message----- From: Slattery, Tim - BLS [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 5:52 PM To: 'Struts Users Mailing List' Subject: RE: Nested Tags > I have a problem using a Tag for the property of another tag. > Isn't that possible? > Example: > -------- > tempArray[0] = <bean:write name="data" > property="<bean:message key=\"column.client.property\"/>" />; AFAIK, that's a no-no. It will try to evaluate the outer tag before finding the inner one. The code that processes the "property" property knows nothing about tags, it just takes the text assigned and tries to use that as a property of the bean. As the error message told you, that didn't work. -- Tim Slattery [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

