This helps a lot, seems to be working for me now.
Thank you! :-)
Lew skrev:
Lew
This is a great reference: www.jadecove.com/jstl-quick-reference.pdf
Also, the code you posted is JSTL, not Struts-EL. JSTL is made up of
the c, fmt and sql taglibs. Struts-EL, however, is an extention of the
standard Struts taglibs (html, bean and logic) that will allow you to
use the expression language to access data.
Hope this helps,
Mike
> This helps a lot, seems to be working for me now.
>
[quoted text clipped - 11 lines]
> >
> > - Lew
Manish Pandit - 11 Oct 2006 18:12 GMT
>Mike Beaty wrote:
> Also, the code you posted is JSTL, not Struts-EL. JSTL is made up of
> the c, fmt and sql taglibs. Struts-EL, however, is an extention of the
> standard Struts taglibs (html, bean and logic) that will allow you to
> use the expression language to access data.
The code I posted is JSP 2.0 EL. JSTL is a collection of tag libraries
(standard and non-standard), while EL is Expression Language supported
in JSP 2.0 spec. EL can be used within a tag (JSTL or custom) as long
as the tag is configured to accept expressions as attributes.
Pretty much like <c:out value="${sessionScope.user.firstName}"/>
-cheers,
Manish