Renders an HTML input element of type hidden, populated by the specified property from the ValueStack.
Examples
<-- example one -->
<s:hidden name="foo" />
<-- example two -->
<s:hidden name="foo" value="bar" />
Example One Resulting HTML (if foo evaluates to bar):
<input type="hidden" name="foo" value="bar" />
Example Two Resulting HTML (if getBar method of the action returns 'bar')
<input type="hidden" name="foo" value="bar" />
|