I am trying to return data from dynamically produced form fields.
I have a query
which produces the filednames (Q1, Q2, etc) I want to return, ie QuestionNum, however I cannot find out how to use that in the form output.
When I try
, it looks for a field called QuestionNum instead of form.Q1, form.Q2, etc.
I am sure I am missing something simple, any help much appreciated.
jmcg
I have a query
Code:
<CFQUERY datasource="BMTGen" name="Questions">
SELECT BRQuestions.QuestionNum
FROM BRQuestions
</CFQUERY>
When I try
Code:
#form.QuestionNum#
I am sure I am missing something simple, any help much appreciated.
jmcg