Hi Jim,
>
> I apologize as this is a generic jsp question and not specific to struts,
but
> hopefully this is a simple one (at least, I give a struts example below).
Is
> it possible to use a tag as an rtexprvalue within another tag's parameter
> field? For example (assuming 'mytag' can take a rtexprvalue for parameter
> 'param'):
>
> <tag:mytag param="<tag:anothertag param=\"hello\"/>"/>
No. You can't use tags into tag attributes.
But with a little effort, you can rewrite your tag to support a syntax like:
<tag:mytag>
<tag:param>
<tag:anothertag param="hello"/>
</tag:param>
</tag:mytag>
Else, you're stuck with ver.1 for now.
Pierre M�tras