Saves the generated content of the cfsavecontent tag, including the results of evaluating expressions and executing custom tags, in the specified variable.
<cfsavecontent variable="">
savecontent variable="" {};
Name | Type | Required | Default | Description |
---|---|---|---|---|
variable | string | Yes | Name of the variable in which to save the generated content of the tag. |
savecontent variable="myContent" {
writeOutput("Somecontent.");
}
<cfsavecontent variable="myContent">
<cfoutput>Some content.</cfoutput>
</cfsavecontent>