Name | Type | Required | Default | Hint |
file | string | true | The file to execute |
Executes a CFML file and outputs whatever the template outputs using cfoutput or the buffer.
execute myFile.cfmYou can also pass variables to the template by passing any number of additional parameters to this
execute file=myFile.cfm foo=bar bum=bazIf you're using positional parameters, they will be available as ${position} in the variables scope.
execute myFile.cfm bar baz