ColdFusion Session Management Revisited... User vs. Spider III

<!--- 
	Check to see if the session management cookie values were updated (the
	test was run). If so, we need to write the cookie value to the user's 
	browser. We could have done this above, but I didn't want to break out
	of the CFScript block as it would not have looked nice.
--->
<cfif blnCookieTestPerformed>
	 
	<!--- Write the cookie value for the test. --->
	<cfcookie 
		name="SessionScopeTested" 
		value="#COOKIE.SessionScopeTested#" 
		expires="NEVER"
		/>
	 
	<!--- Write the cookie value for the test outcome. --->
	<cfcookie 
		name="HasSessionScope" 
		value="#COOKIE.HasSessionScope#" 
		expires="NEVER"
		/>
	 
</cfif>

For Cut-and-Paste