I have multiple dropdown menus in a page. All these dropdowns are populating from a SQL Table. When user select a value for a particular dropdown I save that in a different table. Now I want to make the "already selected" value to be "selected" on the dropdown menu. Notice that I have 2 tables and dropdowns.
Here is little draft:
Table A
data for dropdown
Table B
data for saved dropdown
DropDown
Here is the actual dropdown:
<SELECT name="Dd3">
<CFOUTPUT query="GetDd3">
<OPTION value="#RecNum#">#Title#</OPTION>
</CFOUTPUT>
</SELECT>
Thank you in advanced for helping me with this problem.
Here is little draft:
Table A
data for dropdown
Table B
data for saved dropdown
DropDown
Here is the actual dropdown:
<SELECT name="Dd3">
<CFOUTPUT query="GetDd3">
<OPTION value="#RecNum#">#Title#</OPTION>
</CFOUTPUT>
</SELECT>
Thank you in advanced for helping me with this problem.