Hi,

I have a combobox on my asp page

Example:

Code:
<select name="test">
<option value=a>aaa</option>
<option value=b>bbb</option>
<option value=c>ccc</option>
</select>
(I've retreived the data from the database.)

Is there any way I can get the selected text using asp. using request.form("test") will only give me the value and not the text.

Any ideas anyone???

Thanx