>    <CFLOOP COLLECTION="#Application#" ITEM="Key">
>       #Variables.Key#: #Evaluate("Application." & Variables.Key)#<BR>
>    </CFLOOP>
> 

No, no, no. Sorry, but, again, this is my pet peave. Please remember
that when working with structures, you do not need to use evaluate like
this. Simply use bracket notation:

    <CFLOOP COLLECTION="#Application#" ITEM="Key">
       #Variables.Key#: #Application[Variables.Key]#<BR>
    </CFLOOP>

(Also note that this should be surrounded by CFLOCKs.)

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

Email    : [EMAIL PROTECTED]
Yahoo IM : morpheus

"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
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to