ColdFusion and Whitespace - Part 2
Continuing on the ColdFusion whitespace hunt, your next weapon is the <cfsilent> tag. This is my personal favourite as it is the most straightforward. You just wrap the cfslient tag around anything and it tells ColdFusion not to output anything to the browser from within it.
... something that has a lot of whitespace in it ...
</cfsilent >
Moving onto the cfprocessingdirective tag. This could be the most complicated way of getting whitespace out of our code. Like the cfslient tag, you will need to wrap the code that you want to bring under control
... your code goes here ...
</cfprocessingdirective>
Next, using java to control the output buffer.

There are no comments for this entry.
[Add Comment]