<value-of>
Displays the value of a field, expression, or other XSL data.
| Attribute | Allowed Values | Requirements | Description |
|---|---|---|---|
| select | %filename | Required | Name of the field, prefixed with @. |
Example
To capture a username with the <value-of> tag:
Copy Code
<input type="text" name="originator_username" size="40">
<attribute name="value">
<value-of select="/data/@username"/>
</attribute>
</input>