<cfselect> display boolean values
I am trying to create a cfselect on a search page that checks for a boolean value in an access database. It works when I put a 1 or 0 in the option/values, but I want it to say yes or no instead of 1 or 0 -- novice - thank you-- jim
<label for="Addressed">Addressed:</label>
<cfselect name="addressed" id="addressed" >
<option value="">Select an option.</option>
<option value="1">1</option>
<option value="0">0</option>
</cfselect
