On Tue, 23 Mar 2004 21:39:22 +0100
 "Wolfgang Schreiber" <[EMAIL PROTECTED]> wrote:
So, the extract of my question is: how can I catch a variable that I
can display with "c:out" and pass it to my own java function? Obviously, something like <= myFunction( <c:out value="${myVar}" /> ) %> won't work.

<c:out value="${myvar}" />


is roughly equivalent to:

Object obj = pageContext.findAttribute("myvar");
if (obj != null) {
    out.println(obj);
}

--
Serge Knystautas

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



Reply via email to