> It doesn't matter if it is significant or not. What matters 
> is that what you suggest requires extra effort and has more 
> overhead than outputting directly. You need to show why that 
> extra effort and overhead is worth it.
> 

Well shoot, you could probably write an entire program in one line of
code - but sometimes it is important to make things readable and easy to
understand as well. Take this simple example

method 1:
<cfset str = "this is the result of " & foo(moo) & "<P> This is the
second paragraph of #goo#">

method 2: 
<cfsavecontent variable="str">
This is the result of #foo(moo)#
<p>
This is the second paragraph of #goo#
</cfsavecontent>

Again - this is pretty trivial, but if the text were much more complex,
the second method would be much easier to read, debug, update, etc. Of
course, that just may be a matter of personal style.

=======================================================================
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email    : [EMAIL PROTECTED]
WWW      : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

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

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Reply via email to