<td align="center">
<%sql = "select * from pdy_area"
rs.open sql,con,1,1%>
<select name="DDarea" size="1">
<%do while not rs.eof
if rs.fields("area").value = area then%>
<option selected value><%=area%></option><%
else%>
<option><%=rs.fields("area").value%></option><%
end if
rs.movenext
loop
rs.close%>
</select>
</td>
Although this works fine it doesn't allow the user to type in a value
(instead of selecting) in the entry field. I am looking for a pickup
list that allows manual data entry.
Can CSS be a solution for this, and in which way?
My regards...
JC