RE: Word Separator Character For Bean Key Names...

2002-12-12 Thread Hohlen, John
That took care of it. Thanks David! -Original Message- From: Karr, David [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 1:56 PM To: Tag Libraries Users List Subject: RE: Word Separator Character For Bean Key Names... Make sure you nest quotes correctly. That EL

RE: Word Separator Character For Bean Key Names...

2002-12-12 Thread Karr, David
Make sure you nest quotes correctly. That EL expression string you supplied would be nested by single quotes. > -Original Message- > From: Hohlen, John [mailto:[EMAIL PROTECTED]] > > Follow-Up Question: > > If I want access a property from the bean, such as lastName, > what's the > syn

RE: Word Separator Character For Bean Key Names...

2002-12-12 Thread Gideon, Thomas
Just for a lark, did you try doing something like: to see if that worked? > -Original Message- > From: Hohlen, John [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 12, 2002 2:13 PM > To: 'Tag Libraries Users List' > Subject: RE: Word Separator Cha

RE: Word Separator Character For Bean Key Names...

2002-12-12 Thread Hohlen, John
ayern [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 10:09 AM To: Tag Libraries Users List Subject: Re: Word Separator Character For Bean Key Names... On Thu, 12 Dec 2002, Hohlen, John wrote: > But this won't work with the EL

RE: Word Separator Character For Bean Key Names...

2002-12-12 Thread Hohlen, John
rator Character For Bean Key Names... On Thu, 12 Dec 2002, Hohlen, John wrote: > But this won't work with the EL syntax, right? For example: > > ${sessionScope.com.abc.fleetsystems.employee} > > Won't JSTL the Expression Language (EL) evaluator get confused and l

RE: Word Separator Character For Bean Key Names...

2002-12-12 Thread Gideon, Thomas
With any of the *Scope implicit objects, you can use an alternative syntax, since these are all Maps: ${sessionScope["com.abc.fleetsystems.employee"]} > > com.abc.fleetsystems.employee > > > > But this won't work with the EL syntax, right? For example: > > > > ${sessionScope.com.abc.fleetsyste

Re: Word Separator Character For Bean Key Names...

2002-12-12 Thread Shawn Bayern
On Thu, 12 Dec 2002, Hohlen, John wrote: > But this won't work with the EL syntax, right? For example: > > ${sessionScope.com.abc.fleetsystems.employee} > > Won't JSTL the Expression Language (EL) evaluator get confused and look > for nested objects? More specifically: > > getCom().getAbc()