So Ian... Right now, the entire HTML portion of the page is wrapped in a single cfoutput block. Are you saying that if I break up the cfoutput into multiple portions, and wrap the cfsetting around the spots that are creating the blank spaces then I might be in good shape?
I'll give it a shot for sure, thanks. <!----------------//------ andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --------------//---------> -----Original Message----- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 4:19 PM To: CF-Talk Subject: RE: Suppressing white space There are several methods for suppressing white space in ColdFusion Code. Here are a few off the top of my head, without digging into the documentation. 1) The white space suppression settings in the CF Administrator. This will universally try and remove as much white space as possible from all templates used on the server. It may have some performance considerations. 2) <CFSetting enableCfoutputOnly="true"></CFSetting> Any code wrapped in this tag must have <cfoutput></cfoutput> tags around it to be sent to the client. By picking what does and does not appear in the output tags can reduce white space. 3) <cfsilent></cfsilent> Any code wrapped in these tags will never be sent to the client, no matter what. Be careful as this tag will disable error output as well as all other output. 4) <cfcontent reset="yes"> All content before this tag is thrown away and not sent to the client. This tag will also prevent error messages from appearing. So may need to be disabled during debugging. -------------- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA --------- | 1 | | --------- Binary Soduko | | | --------- "C code. C code run. Run code run. Please!" - Cynthia Dunning Confidentiality Notice: This message including any attachments is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender and delete any copies of this message. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:242430 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

