Dave Newton wrote:
--- matthieu martin <[EMAIL PROTECTED]> wrote:<s:property id="<s:property value='id'/>" value="id"/>That's not valid XML; you can't nest tags like that. Off the top of my head I don't recall if the "id" attribute will eval OGNL or not.
To be pedantic, JSPs are not XML files and thus don't have to be valid; hence <div id="<s:property... works. What is not legal in a JSP is nesting custom actions (i.e. those tags that get processed by the JSP compiler).
L. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

