Using ColdFusion's CFLocation Tag For Inline Image SRC Attributes

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
	<title>ColdFusion CFLocation And Image Soures</title>
	<style type="text/css">
		body {
			font: 12px georgia ;
			}
	</style>
</head>
<body>
 
	<p>
		Hey dude, you gotta check out the photo of
		this chick that I found:
	</p>
 
	<p>
		<!--- NOTE: Image proxy. --->
		<img
			src="image_proxy.cfm?id=1"
			width="316"
			height="217"
			border="0"
			/>
	</p>
 
	<p>
		She's a bit thick, but I think it goes to
		show that woman of all shapes and sizes can
		be smokin' hot!
	</p>
 
</body>
</html>

For Cut-and-Paste