> 
> Yes yes yes.  The [ ] notation doesn't work.  Creates an 
> error.  The error message says

Um, you forgot to remove the .

> <cfwddx action="CFML2WDDX" output="NewDataPacket" 
> input="#application.um.[UmID]_Data#">

Should be

 <cfwddx action="CFML2WDDX" output="NewDataPacket" 
 input="#application.um[#UmID#_Data]#">

or, a bit easier to read:

<CFSET Key = UmID & "_Data">

 <cfwddx action="CFML2WDDX" output="NewDataPacket" 
 input="#application.um[Key]#">


> What's the problem with using evaluate?  Is it slower than 
> using the [] notation?
> 

Yes.

=======================================================================
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 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to