<cfset setVariable("Session.#EziFieldName#", Variables[
variables.EziFieldName ])>
On Mar 11, 2004, at 2:02 PM, James Alford wrote:
try the quote around the var name.
<cfset "Session.#FieldName#" = Evaluate("Variables.#FieldName#")>
You don't need setVariable() and you certainly don't need evaluate() - why not use the much simpler form:
<cfset session[eziFieldName] = variables[eziFieldName]>
Sean A Corfield -- http://www.corfield.org/blog/
"If you're not annoying somebody, you're not really alive." -- Margaret Atwood
--- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED]
MXDU2004 + Macromedia DevCon AsiaPac + Sydney, Australia http://www.mxdu.com/ + 24-25 February, 2004
