You use it to generate the list, and then you can loop through those values.

<CFSET myList = structKeyList(attributes)>

<CFLOOP from="1" to="#listLen(myList)# index="i">
        attributes[#listGetAt(myList,i)#] = #attributes[listGetAt(myList,i)]# <br>
</CFLOOP>

Should work if not try this:

<CFLOOP list="#myList# index="thisIndex">
        attributes.#thisindex# = #evaluate('attributes.' & thisIndex)# <br>
</CFLOOP>

Tim Heald
ACP/CCFD :)
Application Development
www.schoollink.net 

> -----Original Message-----
> From: Andrew Burgess [mailto:[EMAIL PROTECTED]]
> Sent: Monday, June 03, 2002 4:16 PM
> To: [EMAIL PROTECTED]
> Subject: RE: SPAM: RE: request.attributesList
> 
> 
> that only gives me the keys, I'm looking for the key/value pairs
> 
> Cheers!
> -Andrew Burgess
> Windermere Technology
> [EMAIL PROTECTED]
>  
> 
> -----Original Message-----
> From: Patrick McElhaney [mailto:[EMAIL PROTECTED]]
> Sent: Monday, June 03, 2002 1:15 PM
> To: [EMAIL PROTECTED]
> Subject: SPAM: RE: request.attributesList
> 
> 
> structKeyList(attributes)
> 
> Patrick
> 
> 
> > -----Original Message-----
> > From: Andrew Burgess [mailto:[EMAIL PROTECTED]]
> > Sent: Monday, June 03, 2002 2:47 PM
> > To: [EMAIL PROTECTED]
> > Subject: request.attributesList
> > 
> > 
> > how do you access this structure in FB3?
> > worked fine before for getting a collection of url vars
> > does not work in FB3
> > 
> > HELP!!!
> > 
> > Cheers!
> > -Andrew Burgess
> > Windermere Technology
> > [EMAIL PROTECTED]
> 
> 
> 
> 

==^================================================================
This email was sent to: [email protected]

EASY UNSUBSCRIBE click here: http://topica.com/u/?bUrFMa.bV0Kx9
Or send an email to: [EMAIL PROTECTED]

T O P I C A -- Register now to manage your mail!
http://www.topica.com/partner/tag02/register
==^================================================================

Reply via email to