<--- --------------------------------------------------------------------------------------- ---- Blog Entry: StructAppend() the Forgotten Function Author: Ben Nadel / Kinky Solutions Link: http://www.bennadel.com/index.cfm?dax=blog:62.view Date Posted: May 23, 2006 at 7:40 AM ---- --------------------------------------------------------------------------------------- ---> // Copy the URL into the Attributes sturct. Unless we want to explicitly get // information from the FORM variables (as we do in add/edit screens), we are // just going to get it from the Attributes object to make things simpler and // the scoping more consistent. REQUEST.Attributes = Duplicate(URL); // Now, go over the form variables and copy those into attributes. for (LOCAL.Key in FORM){ REQUEST.Attributes[ LOCAL.Key ] = FORM[ LOCAL.Key ]; }