If you have a form, and unSubmit you post it to a CFC, do the form variables get interpreted as arguments?
For instance, say I have a form with the following variables that a user can put in, and I post it to the cfc, do they variables get interpreted as the arguments for the cfc? form.userID form.firstName form.LastName form.email <cffunction name="checkUserCredentials" returntype="struct" output="no" access="remote" returnformat="json"> <cfargument name="userID" type="string" required="false" default="" hint="user id" /> <cfargument name="firstName" type="string" required="false" default="" hint="user first name" /> <cfargument name="lastName" type="string" required="false" default="" hint="user last name" /> <cfargument name="email" type="string" required="false" default="" hint="user email" /> </cffunction> -- online documentation: http://openbd.org/manual/ http://groups.google.com/group/openbd?hl=en
