Re: redundant tag declarations and JSTL

2002-12-05 Thread Brian Buckley
You might try putting all your taglib declarations into a taglibs.jsp file and include that file on the rest of your pages. This has the added benefit of localizing the declarations to one place. Making a taglibs.jsp file as you suggest and including it in my main JSPs but not my JSP snippets

redundant tag declarations and JSTL

2002-12-04 Thread Brian Buckley
Hello: My JSPs contain a bunch of include file statements inside of nested:.. tags. For example, nested:nest property=xxx %@ include file=/util/xxx/editor.jsp % /nested:nest They work great. However, when I attempt to add JSTL into my pages, I get a compile error when Tomcat attempts to

Re: redundant tag declarations and JSTL

2002-12-04 Thread David Graham
PROTECTED] To: Struts Users [EMAIL PROTECTED] Subject: redundant tag declarations and JSTL Date: Wed, 4 Dec 2002 15:18:28 -0500 Hello: My JSPs contain a bunch of include file statements inside of nested:.. tags. For example, nested:nest property=xxx %@ include file=/util/xxx/editor.jsp