Hallo tschanne,
Warum willst Du die Options eigentlich mit Javascript schreiben?
Einfacher wäre doch, auch die Auswahlliste schon serverseitig zu generieren:
<select size="1" name="Auspragung" class="popup1" ID=Select4>
<option value="" selected></option>
<%
rsBI1.MoveFirst
while not rsBI1.EOF
Response.Write "<option value='" + rsBI1("MID") + "'>" + rsBI1("Bezeichnung") + "</option>"
rsBI1.MoveNext
wend
%>
</select>
Grüße
Andreas
--
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning."
(Rich Cook)
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning."
(Rich Cook)