Using ASP Classic application code on Windows server.
Problem:
A drop-down list field filled with records from an Access database and with the following code
<select NAME="ActId" style="font-size: 12px;width:600px;">
<%
rs.MoveFirst
Do While Not rs.EOF
%>
<%If rs("var_datedif")<0 Then 'verleden%>
<option style="font-family: Arial, Helvetica, sans-serif;color:#000000;" value="<%=rs("ActId")%>"><%=rs("Actcat")&" "&rs("ActDatum")&" : "&rs("NrSV")&" "&rs("Actomschrijving")&" - "%>
<%=rs("lokaal")&" - "&rs("spreker")&" : "&rs("onderwerp")%></p></option>
<%ElseIf rs("var_datedif")=0 AND tel_sel_val=0 then%>
<option style="font-family: Arial, Helvetica, sans-serif;color:#0000FF;" selected value="<%=rs("ActId")%>"><%=rs("Actcat")&" "&rs("ActDatum")&" : "&rs("NrSV")&" "&rs("Actomschrijving")&" - "%>
<%=rs("lokaal")&" - "&rs("spreker")&" : "&rs("onderwerp")%>
<%tel_sel_val=1%></p></option>
<%ElseIf rs("var_datedif")>0 AND tel_sel_val=0 then 'toekomst%>
<option style="font-family: Arial, Helvetica, sans-serif;color:#0000FF;" selected value="<%=rs("ActId")%>"><%=rs("Actcat")&" "&rs("ActDatum")&" : "&rs("NrSV")&" "&rs("Actomschrijving")&" - "%>
<%=rs("lokaal")&" - "&rs("spreker")&" : "&rs("onderwerp")%>
<%tel_sel_val=1%></p></option>
<%ElseIf rs("var_datedif")>0 AND tel_sel_val=1 then 'toekomst%>
<option style="font-family: Arial, Helvetica, sans-serif;color:#0000FF;" value="<%=rs("ActId")%>"><%=rs("Actcat")&" "&rs("ActDatum")&" : "&rs("NrSV")&" "&rs("Actomschrijving")&" - "%>
<%=rs("lokaal")&" - "&rs("spreker")&" : "&rs("onderwerp")%></p></option>
<%end if%>
<%
rs.MoveNext
Loop
%>
</select>
has suddenly stopped working in the Microsoft Edge browser for about 15 days - in this browser it shows all the choice records below each other without the possibility to select.
In Google Chrome or Safari there is no problem and the program runs as before.
Does anyone know what the cause / solution could be.
Thanks for the tips.
Problem:
A drop-down list field filled with records from an Access database and with the following code
<select NAME="ActId" style="font-size: 12px;width:600px;">
<%
rs.MoveFirst
Do While Not rs.EOF
%>
<%If rs("var_datedif")<0 Then 'verleden%>
<option style="font-family: Arial, Helvetica, sans-serif;color:#000000;" value="<%=rs("ActId")%>"><%=rs("Actcat")&" "&rs("ActDatum")&" : "&rs("NrSV")&" "&rs("Actomschrijving")&" - "%>
<%=rs("lokaal")&" - "&rs("spreker")&" : "&rs("onderwerp")%></p></option>
<%ElseIf rs("var_datedif")=0 AND tel_sel_val=0 then%>
<option style="font-family: Arial, Helvetica, sans-serif;color:#0000FF;" selected value="<%=rs("ActId")%>"><%=rs("Actcat")&" "&rs("ActDatum")&" : "&rs("NrSV")&" "&rs("Actomschrijving")&" - "%>
<%=rs("lokaal")&" - "&rs("spreker")&" : "&rs("onderwerp")%>
<%tel_sel_val=1%></p></option>
<%ElseIf rs("var_datedif")>0 AND tel_sel_val=0 then 'toekomst%>
<option style="font-family: Arial, Helvetica, sans-serif;color:#0000FF;" selected value="<%=rs("ActId")%>"><%=rs("Actcat")&" "&rs("ActDatum")&" : "&rs("NrSV")&" "&rs("Actomschrijving")&" - "%>
<%=rs("lokaal")&" - "&rs("spreker")&" : "&rs("onderwerp")%>
<%tel_sel_val=1%></p></option>
<%ElseIf rs("var_datedif")>0 AND tel_sel_val=1 then 'toekomst%>
<option style="font-family: Arial, Helvetica, sans-serif;color:#0000FF;" value="<%=rs("ActId")%>"><%=rs("Actcat")&" "&rs("ActDatum")&" : "&rs("NrSV")&" "&rs("Actomschrijving")&" - "%>
<%=rs("lokaal")&" - "&rs("spreker")&" : "&rs("onderwerp")%></p></option>
<%end if%>
<%
rs.MoveNext
Loop
%>
</select>
has suddenly stopped working in the Microsoft Edge browser for about 15 days - in this browser it shows all the choice records below each other without the possibility to select.
In Google Chrome or Safari there is no problem and the program runs as before.
Does anyone know what the cause / solution could be.
Thanks for the tips.