The CFABORT tag stops processing of an application page at the tag location. ColdFusion simply returns everything that was processed before the CFABORT tag. CFABORT is often used with conditional logic to stop the processing of an application page because of a particular condition.
As the following example illustrates, the CFABORT tag has no attributes.
<P>This HTML content is returned
to in the final page.</P>
<CFABORT>
<P>This HTML content is NOT returned
in the final page.</P>
|