Examples
The example below shows an extract from an HTML template file with a template variable called user_state.
<input name="user" {user_state}>
The following programming code uses the SetVar method of the HTMLTemplate object to set the value of the user_state template variable. When the page is rendered for the browser, the user_state template variable will be replaced by the value disabled and as a result of this, the input control will appear disabled.
HTMLTemplate.SetVar "@user_state","disabled"
[from the wealthy documentation using my neuotic search engine]
See also