I am not sure if this what you are trying to do, but JSP does not support using one tag as the value for an attribute of another tag.
You could try using <bean:define> to save the value in a variable. Then use the value of that variable in your custom tags attribute via a request time expression like the following:


<bean:define id="foo">
  <bean:write name="bar" property="baz"/>
</bean:define>

<my:customTag attr="<%=foo%>"/>

Good Luck!

Bill Siggelkow


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



Reply via email to