Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment:

Update parent page

...

Assuming there's an attribute with name 'myApplicationAttribute' in the Application scope.

Code Block
  <saf:property value="%{#application.myApplicationAttribute}" />

...

Assuming there's an attribute with name 'mySessionAttribute' in the Session scope.

Code Block
  <saf:property value="%{#session.mySessionAttribute}" />

...

Assuming there's an attribute with name 'myRequestAttribute' in the Request scope.

Code Block
  <saf:property value="%{#request.myRequestAttribute}" />

...

Assuming there's a request parameter myParameter (eg. http://host/myApp/myAction.action?myParameter=oneImage Removed).

Code Block
  <saf:property value="%{#parameters.myParameter}" />

...

Assuming there's a parameter with the name myContextParam in SAF context.

Code Block
  <saf:property value="%{#myContextParam}" />

...