> I've tried the TRIM, but the property is already clean, there is no blank
> spaces before or after the data. It seems to come from the <cfoutput>.

Ah, then it sounds like a ColdFusion white space issue. If your new to CF,
then you may not know that when a CF template is parsed, code, like:

<CFSET X = 1>
<CFSET Y = 2>

is translated into blank lines. These blank lines get sent back to the
browser. There are a few ways around this.

1) In your cf admin, check the Suppress white space option. Be warned, if
you use this and use CFMAIL, then line breaks in your cfmail don't get
passed.

2) Use CFSETTINGENABLECFOUTPUT=True. That's what I use.

3) Use the CFSILENT tag.

=======================================================================
Raymond Camden, Principal Spectra Compliance Engineer for Allaire

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

"My ally is the Force, and a powerful ally it is." - Yoda


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
------------------------------------------------------------------------------
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/spectra_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to