F
fniles
In VB if I use a ComboBox with Style = 0 - Dropdown Combo, besides selecting
an item from the drop down box, I can also type in the combobox.
In ASP, when I use <select>, is it possible to type in the combox box ?
Thank you.
<select name="S1"></select>
<script language="JavaScript">
var oOption = document.createElement("OPTION");
oOption.text="one"
document.all.item("S1").add(oOption);
</script>
an item from the drop down box, I can also type in the combobox.
In ASP, when I use <select>, is it possible to type in the combox box ?
Thank you.
<select name="S1"></select>
<script language="JavaScript">
var oOption = document.createElement("OPTION");
oOption.text="one"
document.all.item("S1").add(oOption);
</script>