RE: JSTL Function Library

2004-04-07 Thread nrapagnani
The test worked. My original jsp pages still have the same problem. I should be able to figure it out. Thanks a lot. -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 07, 2004 7:47 AM To: Tag Libraries Users List Subject: RE: JSTL Function Library

RE: JSTL Function Library

2004-04-07 Thread Kris Schneider
g with the old JSTL? I haven't had > much success with setting up JSTL and consider it a miracle that I got any > part of it to work. > > -Original Message- > From: Kris Schneider [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 06, 2004 12:20 PM > To: Tag Libraries

RE: JSTL Function Library

2004-04-06 Thread nrapagnani
4 12:20 PM To: Tag Libraries Users List Subject: RE: JSTL Function Library There's really nothing you need to do to the server*, just make sure it supports JSP 2.0. You appear to be using Tomcat 5, so you should be fine (you might want to make sure you've got the latest version: 5.0.19).

RE: JSTL Function Library

2004-04-06 Thread Kris Schneider
will tell me > how to prepare my server for JSTL 1.1? > > -Original Message- > From: Kris Schneider [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 06, 2004 11:36 AM > To: Tag Libraries Users List > Subject: RE: JSTL Function Library > > Make sure you're also using a Se

RE: JSTL Function Library

2004-04-06 Thread nrapagnani
ll tell me how to prepare my server for JSTL 1.1? -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 11:36 AM To: Tag Libraries Users List Subject: RE: JSTL Function Library Make sure you're also using a Servlet 2.4 web.xml: http://java

RE: JSTL Function Library

2004-04-06 Thread Kris Schneider
arameter value. When I use the other > library it works as expected. Any ideas why? > > -Original Message- > From: Kris Schneider [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 06, 2004 11:16 AM > To: Tag Libraries Users List > Subject: Re: JSTL Function Library > > Make s

RE: JSTL Function Library

2004-04-06 Thread nrapagnani
ideas why? -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 11:16 AM To: Tag Libraries Users List Subject: Re: JSTL Function Library Make sure you're using JSTL 1.1. <%@ taglib prefix="c" uri="http://java.sun.com/js

Re: JSTL Function Library

2004-04-06 Thread Kris Schneider
Make sure you're using JSTL 1.1. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %> <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"; %> Functions are really part of the EL, so use them within an EL expression: ${fn:trim(row.user_id)} Quoting [EMAIL PROTECTED]

JSTL Function Library

2004-04-06 Thread nrapagnani
I am using Tomcat 5.X. I'm not sure which version of JSTL I have, but here is my jsp reference: <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"; %> I wanted to trim a variable I get from a database. I've searched the Sun website and have found the function library. <%@ taglib prefix="