This will point ya in the right direction (modify for your needs):

  <!--- create a list of URL variables and values --->
  <cfset keysToStruct = StructKeyArray(URL)>
  <cfset URLList = "">
  <cfloop index="i" from="1" to="#ArrayLen(keysToStruct)#">
    <cfset URLList =
ListAppend(URLList,"#keysToStruct[i]#=#url[keysToStruct[i]]#")>
  </cfloop>

HTH

Cheers

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

---------------------------------------------------------
Macromedia Associate Partner
www.macromedia.com
---------------------------------------------------------
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com
----- Original Message -----
From: "Edwards Robert (air0rae)" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, March 21, 2003 10:25 AM
Subject: URL Parameter list?


> I know I can loop through form variables by using Form.FieldNames as a
list,
> but is there a similar ability to loop through the URL Parameter? (IE. I
use
> form action get instead of post).
>
> I need this ASAP as I have to turn over a project today.
>
> Thanks,
>
> Rob
>
> 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

                                Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
                                

Reply via email to