<cfloop list="#ldap.ColumnList#" index="column">
        <cfset thisColumn="#column#">
        <cfset args["#thisColumn#"]=ldap["#thisColumn#"] />
        <cfoutput>#args[thisColumn]#</cfoutput> <!--- for debugging ---> 
</cfloop>


Oh just to clean all this up.  And I have doing this exact type of functions 
for over two years, and have never had any ColdFusion problems.  The cfset 
thisColumn is completly redundant and one does not need all the quotes and 
pound signs.

<cfloop list="#ldap.ColumnList#" index="column">
        <cfset args[column]=ldap[column] />
</cfloop>

<cfdump var="#args#"> <!--- For debugging of the entire loop at one time. --->


--------------
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

---------
| 1 |   |
---------  Binary Soduko
|   |   |
---------
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238651
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to