cfdocs

cfsavecontent

Saves the generated content of the cfsavecontent tag, including the results of evaluating expressions and executing custom tags, in the specified variable.

Syntax

<cfsavecontent variable="">

Script Syntax

savecontent variable="" {};

Attribute Reference

Name Type Required Default Description
variable string Yes   Name of the variable in which to save the generated content of the tag.

Script Syntax

savecontent variable="myContent" {
 writeOutput("Somecontent.");
}

Tag Syntax

<cfsavecontent variable="myContent">
<cfoutput>Some content.</cfoutput>
</cfsavecontent>