Renderinclude()

The function version of the tag CFINCLUDE that renders a given template and returns back the string

Usage

STRING = Renderinclude( template, runonce )
Argument Summary
template path to the template to render
runonce flag to determine if this template should be executed only once in the request [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Renderinclude(
   template=?, 
   runonce=?
);

Supports passing parameters as a structure using ArgumentCollection:

Renderinclude( ArgumentCollection={
   template : ?, 
   runonce : ?
} );

Extra

See the CFINCLUDE for an example