if i have :
<select size="1" name="impo">
<option value="8">important</option>
<option value="10">very important</option>
then i have
importance = Request.form ("impo")
this well give me the value ..
what if i want to request the option not the value .. like (important or very importance) not 8 or 10 ..
considering that i need 8 and 10 in other calculations so i can't put important as a value ..
<select size="1" name="impo">
<option value="8">important</option>
<option value="10">very important</option>
then i have
importance = Request.form ("impo")
this well give me the value ..
what if i want to request the option not the value .. like (important or very importance) not 8 or 10 ..
considering that i need 8 and 10 in other calculations so i can't put important as a value ..