RE: Accessing a dynamic value in EL

2004-04-20 Thread Josh Holtzman
List Subject: RE: Accessing a dynamic value in EL The EL only references "scoped variables", not scriptlet variables. Read the JSTL specification for a good summary of what you can do with it. If you have a small number of constants, then put your constants directly into a scope

RE: Accessing a dynamic value in EL

2004-04-20 Thread Karr, David
The EL only references "scoped variables", not scriptlet variables. Read the JSTL specification for a good summary of what you can do with it. If you have a small number of constants, then put your constants directly into a scoped variable (application-scoped, most likely). So, if you define a sc

Accessing a dynamic value in EL

2004-04-20 Thread Josh Holtzman
Hello my friends, I am currently accessing a value for output by using the following EL syntax: USER_CONTAINER is the key I use to store my UserContainer object in the session. I have created a global variable to identify the USER_CONTAINER. It can be accessed in a constant's clas