> how do you access this structure in FB3? worked fine before for > getting a collection of url vars does not work in FB3
It wasn't a structure. It was just a list of attributes in query string format (foo=bar&one=two etc). You could use my StructToQueryString() UDF available at cflib.org: http://www.cflib.org/udf.cfm?ID=428 Just do this in top-most fbx_settings.cfm: --------------------- <cfinclude template="udf_StructToQueryString.cfm"> <cfset request.attributesList = StructToQueryString(attributes)> --------------------- You can also use StructToQueryString(attributes, "/", "/") to get the list in search engine safe format. .erki ==^================================================================ 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 ==^================================================================
