Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within JSP
Search Coderanch
Advance search
Google search
Register / Login
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Paul Clapham
Ron McLeod
Jeanne Boyarsky
Tim Cooke
Sheriffs:
Liutauras Vilda
paul wheaton
Henry Wong
Saloon Keepers:
Tim Moores
Tim Holloway
Stephan van Hulst
Carey Brown
Frits Walraven
Bartenders:
Piet Souris
Himai Minh
Forum:
JSP
which version is used
Gaurav Chhabras
Ranch Hand
Posts: 126
posted 16 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Hi
In m TLD file i am writing -:
<taglib>
<tlibversion>1.0</tlibversion>
<jspversion>1.1</jspversion>
</taglib>
I am creating custom tags and not installed with JSTL, should i have to install it before making Custom Tags.
I am using
Tomcat
5.0 so please tell me that what should i write in
<tlibversion>1.0</tlibversion>
<jspversion>1.1</jspversion>
Please tell the above.
Regards
Gaurav
Heonkoo Lee
Ranch Hand
Posts: 85
posted 16 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
You don't need JSTL libraries for your own custom tags.
I think Tomcat 5.x supports
JSP
versions up to 2.0 (= 1.2), so you can use either 1.0, 1.1 or 1.2.
Bear Bibeault
Sheriff
Posts: 67637
173
I like...
posted 16 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Here is the skeleton tld file I use under Tomcat 5:
<taglib xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd" version="2.0"> <tlib-version>1.0</tlib-version> <short-name>whatever</short-name> <uri>http://whatever.com/tld/whatever</uri> <!-- tag declarations go here --> </taglib>
[
Asking smart questions
] [
About Bear
] [
Books by Bear
]
LOOK! OVER THERE! (yoink) your tiny ad is now my tiny ad.
free, earth-friendly heat - a kickstarter for putting coin in your pocket while saving the earth
https://coderanch.com/t/751654/free-earth-friendly-heat-kickstarter
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Oracle JspParseException
Problem while running JSP Custom Tag
problem in TLD
error while compiling
Repetative html code in jsp
More...