On 5/22/07, newtostruts struts <[EMAIL PROTECTED]> wrote:
How do I get the value of this tag in a JSP variable on the same page. <s:property value="role" /> .
How about using JSTL:
<c:set var="foo"><s:property value="role" /></c:set>
${foo}
HTH,
--
Hassan Schroeder ------------------------ [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

