I'm getting a little bit frustrated since I can't find out which variables I can access with the ${...}
syntax in a Struts tag, placed in a JSP page.
As an example I've got the following code:
<c:set target="${status.menueStatus}" property="activeMenuePath" value="whatever" />
Where does the object "status.menueStatus"
have to be defined in order to can be accessed with a dollar sign and braces. Is it defined in another struts tile or in the form?