RE: anyone using jstl side by side with the strut taglibs?

2003-11-19 Thread Manjunath Bhat
] Sent: Wednesday, November 19, 2003 7:47 AM To: Struts Users Mailing List Subject: Re: anyone using jstl side by side with the strut taglibs? Expression Language ... its being able to use ${param.id} in a JSP tag to get the value of the id request parameter passed to the JSP using it. Or being

Re: anyone using jstl side by side with the strut taglibs?

2003-11-18 Thread Brice Ruth
Once you use EL, you don't have much of a choice than to use them side-by-side. Nick Faiz wrote: Hi, I'm nearing the end of a prototype for my first Struts application. At first, I used JSTL to handle most of my iteration, declarations, and conditional operations. Then, as I

RE: anyone using jstl side by side with the strut taglibs?

2003-11-18 Thread Nick Faiz
Thanks Brice, I just checked out Struts-EL. I think I'll begin using it with JSTL. Nick -Original Message- From: Brice Ruth [mailto:[EMAIL PROTECTED] Sent: Wednesday, 19 November 2003 12:36 PM To: Struts Users Mailing List Subject: Re: anyone using jstl side by side

Re: anyone using jstl side by side with the strut taglibs?

2003-11-18 Thread Gus Heck
Brice Ruth wrote: Once you use EL, you don't have much of a choice than to use them side-by-side. For the benefit of us noobs... what is EL? -Gus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

RE: anyone using jstl side by side with the strut taglibs?

2003-11-18 Thread Nick Faiz
: anyone using jstl side by side with the strut taglibs? Brice Ruth wrote: Once you use EL, you don't have much of a choice than to use them side-by-side. For the benefit of us noobs... what is EL? -Gus - To unsubscribe, e

Re: anyone using jstl side by side with the strut taglibs?

2003-11-18 Thread Brice Ruth
Expression Language ... its being able to use ${param.id} in a JSP tag to get the value of the id request parameter passed to the JSP using it. Or being able to do something like test=${empty linkParams} to test if a particular variable has no values/is null/etc. Gus Heck wrote: Brice Ruth