OK. Guess CFMX just doesn't like too many cfoutputs in a row or 
something. Altough I've been taught that it's best to use cfoutput 
around just your variables when possible so CF doesn't try and patse 
all the code inside, I fixed it by placing a single cfoutput around 
the entire block of code.

<CFIF isDefined('form.includeorders')>
<textarea rows="10" cols="50" wrap="off">
<CFOUTPUT>#orders#</CFOUTPUT>
</textarea>
</CFIF>

(4 more times with different variables)

To...

<CFOUTPUT>
<CFIF isDefined('form.includeorders')>
<textarea rows="10" cols="50" wrap="off">
#orders#
</textarea>
</CFIF>

(4 more times with different variables)
</CFOUTPUT>

Nightmare.
-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

                                Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
                                

Reply via email to