Just make the value of the submit button dynamic and then retrieve it like
so:

This is how to retrieve form values that are dynamic:

<cfscript>
        NULL = StructDelete(form,"fieldnames",0);
        NULL = StructDelete(form,"a_field_you_dont_want",0);
        stData = StructNew();
                for(it in form){
                        if(len(form[it])){
                        "stData.val_#it#" = form[it];
                                }
                                        }
</cfscript>

<cfdump var="#stData#">


Regards,

Phillip B. Holmes


---
[This E-mail has been scanned for viruses.]

----------------------------------------------------------
To post, send email to [EMAIL PROTECTED]
To unsubscribe: 
   http://www.dfwcfug.org/form_MemberUnsubscribe.cfm
To subscribe: 
   http://www.dfwcfug.org/form_MemberRegistration.cfm


Reply via email to