How do I go about retrieving the inner text from select options with asp? I am using the values to do some calculations, but I want to retrieve the inner text of the option field for display purposes, how would I go about doing this?
[code=html]
<select name="refresh_r ate" id="refresh_rat e" onChange="set_r efresh_rate(thi s);return false;">
<option value="60">60 Seconds</option>
<option value="30">30 Seconds</option>
<option value="15">15 Seconds</option>
</select>
[/code]
[code=html]
<select name="refresh_r ate" id="refresh_rat e" onChange="set_r efresh_rate(thi s);return false;">
<option value="60">60 Seconds</option>
<option value="30">30 Seconds</option>
<option value="15">15 Seconds</option>
</select>
[/code]
Comment