Loading ASP Free Topics...
Loading Forum Links...
Loading Dev Shed Topics...
Loading Dev Articles Topics...
Loading SEO Topics...
...
This shows how you get the TEXT of a combo rather than it's VALUE.
Here is the code for this Example
<!-- Author: Adrian Forbes --><SCRIPT FOR="window" EVENT="onload()" language=Javascript> PopulateTextbox()</script><p><form name=frmTest><select name=cboTest onChange="PopulateTextbox()" size=1><option value="1">One<option value="2">Two<option value="3">Three</select><input type=TEXT name=txtTest><br></form><script language=Javascript>function PopulateTextbox(){ frmTest.txtTest.value = frmTest.cboTest.options(frmTest.cboTest.selectedIndex).text;}</script>