A bit ago, I was having a problem with ColdFusion ... I have discovered the fix.
Simply surround all of this code that isn't supposed to produce output with cfsilent tags, and nothing will be output to the browser. Example below
<cfsilent>
<cfquery name="myQuery">
SELECT * FROM aTable
</cfquery>
</cfsilent>
Hope that helps someone out there!