Re: uri question..

2006-09-11 Thread maya
Eric Haszlakiewicz wrote: On Sun, Sep 10, 2006 at 01:18:19PM -0400, maya wrote: I have been studying taglibs and beans for days now, and am still confused about some things, but for now a simple question (I hope..) re uri: let's take JSTL.. the jstl.jar for my app is here.. /WEB-INF/lib

Re: uri question..

2006-09-11 Thread Kris Schneider
maya wrote: hi, I have been studying taglibs and beans for days now, and am still confused about some things, but for now a simple question (I hope..) re uri: let's take JSTL.. the jstl.jar for my app is here.. /WEB-INF/lib yet the uri for it in taglib directive in JSP (and in uri tag

uri question..

2006-09-10 Thread maya
hi, I have been studying taglibs and beans for days now, and am still confused about some things, but for now a simple question (I hope..) re uri: let's take JSTL.. the jstl.jar for my app is here.. /WEB-INF/lib yet the uri for it in taglib directive in JSP (and in uri tag in tld) is

Re: uri question..

2006-09-10 Thread Rashmi Rubdi
I think %@ taglib prefix=c uri=http://java.sun.com/jsp/jstl/core; % is a namespace declaration. With this declaration the namespace prefix is associated with the namespace uri so that the tag processor knows how to handle a JSTL tag when it comes accross it in the JSP page.

Re: uri question..

2006-09-10 Thread Eric Haszlakiewicz
On Sun, Sep 10, 2006 at 01:18:19PM -0400, maya wrote: I have been studying taglibs and beans for days now, and am still confused about some things, but for now a simple question (I hope..) re uri: let's take JSTL.. the jstl.jar for my app is here.. /WEB-INF/lib yet the uri for it in