Includes the content from the referenced file (template). The content may be executed as CFML, see compatibility info below. You can embed cfinclude tags recursively. For another way to encapsulate CFML, see cfmodule. (A CFML page was formerly sometimes called a CFML template or a template.)
<cfinclude template="" runonce="true|false">
include "template.cfm" runonce=true|false;
Name | Type | Required | Default | Description |
---|---|---|---|---|
template | string | Yes | A logical path to a CFML page. | |
runonce | boolean | No | false | CF10+ If set to true, the given template is not processed again for a given request if it has already been processed. |
CF9+
include "mypage.cfm";
<cfinclude template="mypage.cfm">