>>It seem like a hack to get around something that should work.

Don't forget that syntax is checked at compile time and if at execution.
See this code for instance:

<CFSET test="yes">
<CFIF test>
     <TABLE....>
     <CFSET test="no">
</CFIF>
     table rows go here
<CFIF test>
     </TABLE>
</CFIF>

This would generate an opening <TABLE tag with no closing tag, which is an 
error in HTML.
If it is only HTML, CF doesn' care, but if it is it's own code, it cannot 
tolerate this situation.



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356934
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to