Haven't tested, hope it helps
<CFSET ScopeVarList = "FORM,URL">
<CFLOOP list="#ScopeVarList#" index="SCOPE">
<CFLOOP collection="#evaluate(scope)#" item="VarName" >
<CFSET MyVar=Evaluate("#scope#.#VarName#")>
<INPUT TYPE="Hidden" NAME="#VarName#" VALUE="#MyVar#">
</CFLOOP>
</CFLOOP>
----- Original Message -----
From: Ellwood
To: [EMAIL PROTECTED]
Sent: Tuesday, October 21, 2003 10:35 AM
Subject: [cfmail] [ cf-dev ] URL parameters
Guys,
Please help my brain to function today. I know url and form parameters are
passed across in a structure but how do I easily loop through that and tag
it on to the end of a new link for paging functions to work properly?