<!--- Log pre-CFLocation value. --->
<cfset LogMessage( "Pre-CFLocation" ) />

<!--- Tell the client that it will have to redirect. --->
<cfheader
	statuscode="302"
	statustext="Found"
	/>

<!--- Redirect user to next page. --->
<cfheader
	name="location"
	value="page2.cfm"
	/>

<!--- Flush header values to client. --->
<cfflush />

<!--- Log post-CFLocation value. --->
<cfset LogMessage( "Post-CFLocation" ) />