Shoukat, Faisal wrote:
> <test:example name="abc" title="123" property="<title:renderTitle/>"/>
>
> However I don't know how to add the second tag
>
> Any one know?
>
That's not valid XML.
You need to either use EL:
<test:example name="abs" title="123" property="${propertyName}"/>
or nesting:
<test:example name="abc" title="123">
<title:renderTitle/>
</test:example>
Dave
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]