I'm trying to build a dynamic form with several instances of:
where variable_1 consists of a prefix plus a code (e.g. product code).
I want to follow Fusebox in this app, so the first thing I do is converts all the URL and Form variables to Attributes. When processing this form, how can I find the names of the Attributes-scoped variables which contain the values? The Attributes' names will vary because the codes come from a database query, e.g. on one occurrence of the page they might be
Prod_45, Prod_78
and in another occcurrence they might be
Prod_34, Prod_85, Prod_102
If someone does answer this, can he/ she please state what versions of CF support the technique he / she recommends.
Thanks.
Code:
<input type="text" name="#variable_1#" value="#variable_2">
I want to follow Fusebox in this app, so the first thing I do is converts all the URL and Form variables to Attributes. When processing this form, how can I find the names of the Attributes-scoped variables which contain the values? The Attributes' names will vary because the codes come from a database query, e.g. on one occurrence of the page they might be
Prod_45, Prod_78
and in another occcurrence they might be
Prod_34, Prod_85, Prod_102
If someone does answer this, can he/ she please state what versions of CF support the technique he / she recommends.
Thanks.