3. Properties
/* Reading the value from the property is fine */
var @uppercasedName = ToUpper(@Name)
/* However, assigning a new value will throw an error */
@Name := "Jane Doe"<? register input @Name ?>
<input type="text" name="<?attr OutputId(@Name) ?>" value="<?attr @Name ?>">Last updated
Was this helpful?