The first menu in the above form was generated by the following statements:
<SELECT NAME="favorite_fruit_list" SIZE=5 MULTIPLE>
<OPTION VALUE="Apple">Apple
<OPTION VALUE="Orange">Orange
<OPTION VALUE="Kiwi">Kiwi
<OPTION VALUE="Grape">Grape
<OPTION SELECTED VALUE="Banana">Banana
</SELECT>
The second menu was generated by the changing the SIZE=5 attribute to SIZE=2 in the above
statements.
The third menu was generated by the removing SIZE=5 and MULTIPLE attributes from the first
OPTION statement in the above statements.
The forth menu was generated by the removing SIZE=5 and MULTIPLE attributes from the
first OPTION statement and SELECTED from the last OPTION statement in the above statements.
|