This dropdown menu sets a value and the button sends
you to fruits.asp. Certain things occur in Fruits.asp
based upon the option value.
<form method="POST" action="fruits.asp">
<p align="left">
<select name="AccessType">
<option value="A" selected> apple </option>
<option value="G">grape</option>
<option value="C">cherry</option>
</select>
<input type="submit" value="GO" name="Submit" tabindex="2"></p>
</form>
I want to increase the number of choices. In addition,
I want the new choices to APPEAR in a submenu on the right.
For example, if the user touches "grape" I might want a
submenu to appear with captions like "seedless" and
"traditional". However, I do not need to set two
variables, just one. So it will appear to the user that
they are making two choices (ie fruit and type of fruit)
but really they are just setting one option value.
Any ideas?
you to fruits.asp. Certain things occur in Fruits.asp
based upon the option value.
<form method="POST" action="fruits.asp">
<p align="left">
<select name="AccessType">
<option value="A" selected> apple </option>
<option value="G">grape</option>
<option value="C">cherry</option>
</select>
<input type="submit" value="GO" name="Submit" tabindex="2"></p>
</form>
I want to increase the number of choices. In addition,
I want the new choices to APPEAR in a submenu on the right.
For example, if the user touches "grape" I might want a
submenu to appear with captions like "seedless" and
"traditional". However, I do not need to set two
variables, just one. So it will appear to the user that
they are making two choices (ie fruit and type of fruit)
but really they are just setting one option value.
Any ideas?