Re: Nested Tags Question

2004-08-24 Thread Kris Schneider
You can't use one tag as an attribute value for another tag... Quoting kalyan inuganti <[EMAIL PROTECTED]>: > Hi, > I have some thing like - > > > >dayName="dobDay" yearName="dobYear" dayValue=" value='${registrationForm.dobDay

Re: Nested Tags Question

2004-08-24 Thread Helios Alonso
Would it work? At 08:18 24/08/2004 -0400, you wrote: You can't use one tag as an attribute value for another tag... Quoting kalyan inuganti <[EMAIL PROTECTED]>: > Hi, > I have some thing like - > > > >dayName="dobDay" yearName="d

Re: Nested Tags Question

2004-08-24 Thread Kris Schneider
Yes. In that case, "aux" will be a page-scoped variable whose value is the result of trimming the string produced by the tag. Quoting Helios Alonso <[EMAIL PROTECTED]>: > Would it work? > > > > > At 08:18 24/08/2004 -0400, you wrote: > >You can't use one tag as an attribute value for another

Re: Nested Tags Question

2004-08-24 Thread kalyan inuganti
Guys - Thanks for the response but in the below example, the othertag is literally taking the String "${aux}" instead of its value. I do have true for that particular attribute set. Any thoughts? Thanks --- Kris Schneider <[EMAIL PROTECTED]> wrote: > Yes. In that case, "aux" will be a page-s

Re: Nested Tags Question

2004-08-24 Thread Kris Schneider
For JSP 1.2 and earlier, means an attribute can take an expression of the form <%= ... %> as its value. It's not until JSP 2.0 that the container provides the same level of built-in support for EL expressions. If you want to use EL expressions for attribute values in your own tags you have to hand

Re: String concatenation

2004-08-24 Thread Felipe Leme
BTW, trying to concatenate 2 strings using a + is a common mistake - I think it would worth some sort of FAQ/note on the specification about how to correctly do it. On Mon, 2004-08-23 at 14:58, Keith wrote: > > > There's no JSTL concatenation operator (that I know). Whatever you want the separa