On Sun, 27 Jan 2002 [EMAIL PROTECTED] wrote:

> How do I put the result of the tag into the method? Without having to
> create a tag for Language. My suggested solution would be a tag which
> places its body into a named variable. So:
> 
> <standard:eval var="name"><store:get jdo="person.name"/></standard:eval>
> <%
>     out.write(Language.translateToSwahili(context.get("name")));
> %>
> 
> Or some such...

Unless I'm misunderstanding your request, you can do this with <c:set> --

   <c:set var="name">
     <store:get ... />
   </c:set>

Shawn


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

Reply via email to