House of Fusion
Search over 2,500 ColdFusion resources here
  
Home of the ColdFusion Community

Search cf-newbie

July 04, 2009

<<   <   Today   >   >>
Su Mo Tu We Th Fr Sa
       1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31   

Home / Groups / ColdFusion Newbie (CF-Newbie)

Flash form problem

Author:
Robert Makowski
02/19/2007 11:13 AM

I have a flash form that was working a while ago, but I have recently reinstalled coldfusion, as well as my web server. The form displays correctly, but one field, a dropdown selection list, will not work.  I am using a query to fill the list. The query: <cfquery name="HOAs"             datasource="#Request.MainDSN#">                         SELECT *                         FROM HOAs                         ORDER BY NAME </cfquery> The code: <cfselect name="property" required="yes" label="Property" width="150"> <cfoutput query="HOAs"> <option value="#HOAs.hoaID#">#HOAs.hoaID# - #HOAs.name#</option> </cfoutput>                               </cfselect> Any help will be appreciated.


Mailing Lists