Context validation error for the cfoutput tag.
The start tag must have a matching end tag. An explicit end tag can be provided by adding . If the body of the tag is empty, you can use the shortcut
Sample code
<cfoutput>
</cfoutput>
<!--- A closing cfoutput with no matching start tag --->
</cfoutput>
</cfoutput>
<!--- A closing cfoutput with no matching start tag --->
</cfoutput>
Explanation
As well as an odd number of cfoutput tags, you can also get this error if you do not nest them correctly inside/outside other tags.
<cfif condition>
<cfoutput>
<cfelse>
</cfif>
</cfoutput>
<cfif condition>
<cfoutput>
<cfelse>
</cfif>
</cfoutput>
Submitted by Adrian Lynch on Sunday 2 November 2008
