will variables lose state after cflocation is executed
After the following two statements are executed,
<cflocation url="index.cfm?action=#action#" addtoken="No">
<cfabort>
will the variables lose state?
Should I do the following?
<cflock timeout="20" scope="Session" type="Exclusive">
<cfif IsDefined(#Session.status#)>
<cfoutput>Session.status #Session.status#</cfoutput>
<cfelse>
<cfset Session.status = "Next">
</cfif>
</cflock>
<cflocation url="index.cfm?action=#action#" addtoken="No">
<cfabort>
