ColdFusion Application.cfc OnRequest() Creates A Component Mixin

<html>
<head>
	<title>OnRequest() Mixin</title>
</head>
<body>
 
	<p>
		This is the target page. Sweet!
	</p>
 
	<!---
		Output the page passed to the OnRequest()
		event method.
	--->
	<p>
		<cfoutput>
			TargetPage: #ARGUMENTS.TargetPage#
		</cfoutput>
	</p>
 
</body>
</html>

For Cut-and-Paste