Show TOC

Background documentationTransferring Variables Locate this document in the navigation structure

 

You can transfer expressions, for example variables, with the following syntax:

Syntax Syntax

Value transfer:

  1. objekt = <%=varname%>
End of the source code.

Example Example

bgcolor = "green" creates a green background by transferring the value green. With bgcolor = "<%=color%>" the current value of the variable color is assigned to the attribute bgcolor.

End of the example.