No. Get Standard 1.0.5, it implements JSTL 1.0. Use the following taglib
directives:
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"; %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt"; %>
<%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql"; %>
<%@ taglib prefix="x"
I am using Tomcat 4.1.29, so now I am questioning what standard.jar I am using.
Will Standard 1.1.0 work in Tomcat 4.1.29?
Stuart
On Tue, 22 Jun 2004, Kris Schneider ([EMAIL PROTECTED]) wrote:
> The "url" attribute is dynamic, so you can definitely use an expression to set
> its value. S
The "url" attribute is dynamic, so you can definitely use an expression to set
its value. Standard 1.1.0 implements JSTL 1.1 which requires a JSP 2.0
container (like Tomcat 5). Whicht appserver are you using? If it supports JSP
2.0, is your app using a Servlet 2.4 web.xml?
Quoting Stuart Schmukler
I have been trying to get to work rendering pages. The
coding is:
or
The idea is to reuse the coding around the import tag on a number of
pages.
I have stepped into the import tag code and find that the 'url'
attribute of the tag is not being evaluated.
Is this a bug? O