I am changing a legacy web page that uses classic .asp + html. I am adding a pulldown with date values. In testing, I noticed that the pulldown's value shifts to the appropriate month when I type a numeral. However, if I continue to type in the date, it ignores the other characters. How can I fully implement fuzzy spelling?
<select name="dateAssigned" tabindex="20">
<option>1/1/1999</option>
<%
i= -100
do while i < 301
response.write "<option>" & date()+i & "</option>"
i=i+1
loop
%>
</select>
<select name="dateAssigned" tabindex="20">
<option>1/1/1999</option>
<%
i= -100
do while i < 301
response.write "<option>" & date()+i & "</option>"
i=i+1
loop
%>
</select>