Supratim Bandyopadhyaya wrote:
<s:param name="direction" value="forward"></s:param>
But the parameter direction which is assigned a value "forward"
does not show.
The param "direction" is assigned the value resulting from evaluating
"forward" against the valuestack.
<s:param>FOO</s:param> works because anything inside the tag is
evaluated to a string before being used.
A better solution would be to be explicit about the fact that you want a
string:
<s:param name="direction" value="%{'forward'}"/>
-Dale
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]