Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<CFABORT>
<cfscript>
keepGoing = 1; // the default is to keep going
myvar = 2; // set working variable
keepGoing = 0; // we want to abort here
break;
myvar = 3; // if the abort doesn't work, we'll know
</cfscript>
<cfif keepgoing>
<cfoutput>#VARIABLES.myvar#</cfoutput>
<cfelse>
<cfabort>
</cfif>