Alberto A. Flores wrote:
Yes, you can use tags within tags, ...

To clarify: you can use JSP Custom Action tags within arbitrary HTML/XML tags; you *cannot* use JSP Custom Action tags within JSP Custom Action tags. So,

  <input ... value='<s:property...

is OK, since <input> is not a JSP action, but

  <s:input ... value='<s:property ...

would not be, as it would not be valid JSP syntax.

And to be pedantic, the above is only true for 'regular' JSP files; for XML-syntax JSPs, neither would work since neither is well-formed XML.

</pendantry> :-)

L.


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

Reply via email to