Question : ColdFusion Have One List Box Fill Depending on Value of First List Box

I have to DropDown List Boxes.  What I want is for the user to select the certification on the first list box.  So if the User Selects Microsoft then the next list box will populate with the Microsoft Certifications such as MCSE, MSDBA, MCSD, etc...

How do you do this?
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:
<tr>
  <td align="right"><b>Certification</b></td>
  <td><b>:</b></td>
  <td colspan="2">
  <cfquery name="qryCert" datasource="myDB">
    select * from Certifications
  </cfquery>
  <SELECT name="CertID" class="Formtext">
  <OPTION value="">&nbsp;Please Select...</OPTION>
      <cfloop query="qryCert">
  <option value="#CertID#">#Certification#</option>
  </cfloop>
  </SELECT>
  </td>
</tr>  

<tr>
  <td align="right"><b>List</b></td>
  <td><b>:</b></td>
  <td colspan="2">
  <cfquery name="qryList" datasource="myDB">
    select * from CertList
  </cfquery>
  <SELECT name="CertListID" class="Formtext">
  <OPTION value="">&nbsp;Please Select...</OPTION>
      <cfloop query="qryCertList">
  <option value="#CertListID#">#Name#</option>
  </cfloop>
  </SELECT>
  </td>                                   </tr>

Answer : ColdFusion Have One List Box Fill Depending on Value of First List Box

Random Solutions  
 
programming4us programming4us