Versions Compared

Key

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

...

Code Block
xml
xml
<%@ taglib prefix="wws" uri="webwork/tags" %>

<html>
<head>
    <title>Hello</title>
</head>
<body>

Hello, <ww<s:property value="name"/>

</body>
</html>

...

Assuming there's a request parameter myParameter (ege.g. http://host/myApp/myAction.action?myParameter=one).

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

...

Context Scope Parameter

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

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

...