BUTTONS: radio


Select ONE of the following options


RADIOBUTTONS use a similar notation to CHECKBOXES, however only one option may be chosen among many.

Options:
VALUE="" REQUIRED
Specifies the value of the option to be sent to the server.
If not defined, a value of "on" is sent to the server.

CHECKED RECOMMENDED
This tag specifies which radiobutton to be selected by default.
Since it is implied that a selection will be made, it is best to provide a default selection.

================

<FORM METHOD="POST" ACTION="/cgi-bin/post-query">

Compile program with:
<DL>
<DD>Version
<INPUT TYPE="radio" NAME="version" VALUE="4.035">4.035
<INPUT TYPE="radio" NAME="version" VALUE="4.036">4.036
<INPUT TYPE="radio" NAME="version" VALUE="5.0" CHECKED>5.0
<DD>Output to: 
<INPUT TYPE="radio" NAME="output" VALUE="screen">screen
<INPUT TYPE="radio" NAME="output" VALUE="printer">printer
</DL>

</FORM>

================
Compile program with:
Version: 4.035 4.036 5.0
Output to: screen printer

Notes:
[Go Back] [Go Forward]
[Go to Top]

Carlos A. Pero* (c-pero@uiuc.edu)