how to use JSTL

please tell me that how to use JSTL in the jsp page and from where we can download JSTL.please do tell me that
[124 byte] By [T.kanchana] at [2007-9-23]
# 1
http://www.google.be/search?hl=nl&q=JSTL&meta=
pgeuensa at 2007-7-10 > top of java,Enterprise & Remote Computing,Web Tier APIs...
# 2
U can use TL's from shipped alongside struts.jar or you can use jsp TL's by putt *** the TLD files in WEB-INF and the corresponding jar files with classess in the LIB directory.Also make sure that you have a taglib entry in the web.xml file.
LeonardoDaVincia at 2007-7-10 > top of java,Enterprise & Remote Computing,Web Tier APIs...
# 3

>U can use TL's from shipped alongside struts.jar or you can use jsp TL's by

> putting the TLD files in WEB-INF and the corresponding jar files with classess

>in the LIB directory.Also make sure that you have a taglib entry in the web.xml file.

No. absolutely wrong.

First, JSTL is NOT the same as the taglibs distributed with struts.

second, you don't need the tld files, or any entries in web.xml, all you need are the jar files.

JSTL can be downloaded from here.

There are two versions depending upon what servlet container you have.

JSP1.2 container(most servers) get JSTL 1.0: http://jakarta.apache.org/taglibs/doc/standard-1.0-doc/intro.html

JSP2.0 containers(eg Tomcat5 - newer servers) get JSTL1.1

http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html

Cheers,

evnafets

evnafetsa at 2007-7-10 > top of java,Enterprise & Remote Computing,Web Tier APIs...