Hello,
I have a select box, that a choose school names from.
I was wondering if I could make this select box 'intelligent'.
at present if I type DAVID, it firstly jumps to the school beginning with D, then A, then V and so on,
how can I make the select box so when I type DAVID it goes to the school DAVID. ?
I have noticed on some computers IE already does this, is there a setting I could change, or do I need to code ?
<Select name = "establishments">
<option selected>--Select Establishment--
<% While Not RScompany.EOF
%>
<option style="color:black" value="<%=RScompany("EstablishmentID"
%>">
<%=RScompany.Fields("EstablishmentName"
%>
<%
RScompany.MoveNext
Wend
%>
</select>
thank you in advance.
I have a select box, that a choose school names from.
I was wondering if I could make this select box 'intelligent'.
at present if I type DAVID, it firstly jumps to the school beginning with D, then A, then V and so on,
how can I make the select box so when I type DAVID it goes to the school DAVID. ?
I have noticed on some computers IE already does this, is there a setting I could change, or do I need to code ?
<Select name = "establishments">
<option selected>--Select Establishment--
<% While Not RScompany.EOF
%>
<option style="color:black" value="<%=RScompany("EstablishmentID"
<%=RScompany.Fields("EstablishmentName"
<%
RScompany.MoveNext
Wend
%>
</select>
thank you in advance.