You don't WANT to do this in ASP. You want to do it IN THE BROWSER, using JavaScript.
As simple as this:
Code:
<form>
<select name="first" onchange="this.form.second.selectedIndex=this.selectedIndex">
<option>number 1</option>
<option>number 2</option>
<option>number 3</option>
</select>
<select name="second">
<option>name 1</option>
<option>name 2</option>
<option>name 3</option>
</select>
...
</form>
...
This assumes that the options in the two <SELECT>s are related element by element. If it's more complex than that (e.g., maybe the values in the second select are arranged alphabetically?), then the
JS code will be longer. But it still won't be complicated.
So if the above doesn't work, show a sample of your *REAL* <SELECT>s.