Hi,
I have several combo/ pull down boxes in my forms, but when I use one of these in an amend script, the combo box only displays the first item in the combo, not the value recorded in the database.
Anyone know how to resolve this?
I have the following code in the combo box:-
<select name="timetaken" class="midgreen" value="<%=rs("timetaken")%>">
<option value="5">5</option>
<option value="10">10</option>
<option value="15">15</option>
<option value="20">20</option>
<option value="25">25</option>
<option value="30">30</option>
<option value="450">450</option>
<option value="2250">2250</option>
</select>
TIA
Steve