I have a session variable to list the radio buttons that were clicked. I set
up a wizard to have 1 question on each page with a set of radio buttons. But
the questions come from one database table and the answers come from another
database table. I have everything working correctly, I just can't figure out
when a user clicks back through the wizard, that it remembers what radio button
the user checked. Here is the code I have now: <cfoutput
query='rsGetAnswers'> <!--- Should radio be pre-checked ---> <cfset
IsChecked = ListFind(SESSION.BillingSurvey.Answers, rsGetAnswers.anserID)>
<cfif IsChecked eq rsGetAnswers.anserID> <cfinput name='currentAnswer'
type='radio' value='#rsGetAnswers.anserID#'> <cfelse> <cfinput
name='currentAnswer' type='radio' value='#rsGetAnswers.anserID#' checked>
</cfif>#rsGetAnswers.answer#<br> </cfoutput>