Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to poulate dropdown list from a

Status
Not open for further replies.

CFProg

Programmer
Oct 23, 2003
4
US
How to poulate dropdown list from a query result using ColdFusion.
 
<select size=&quot;1&quot; name=&quot;feild_name&quot;>
<option value=&quot;&quot; selected>Please select publication</option>
<cfoutput query=&quot;get_value&quot;>
<option value=&quot;#feild_value#&quot;>#feild_name#</option>
</cfoutput>
</select>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top