Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Pickup list

0 views
Skip to first unread message

JCoelho

unread,
Sep 26, 2001, 7:57:26 AM9/26/01
to
I'm using the next piece of HTML to make the user choose a value from
a pickup list.

<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

0 new messages