Hello,
I have a dropdown list (single row only) of languages. If I select 'English", the page will reload, it will pass a variable of the Language ID, and all records in English will display in the table.
How can I retain the value selected in the dropdown? I want the selected language to be selected (displayed) in the dropdown list, not the first nor last.
Thanks in advance!
<select name="LanguageID" onchange="myForm.submit();">
<%do while not rs.eof%>
<option value="<%=rs("LanguageID")%>"><%=rs("Language")%></option>
<%rs.movenext
loop%>
</select>