DEFINITION defines an input object within an html form. These objects come in several types and include different ways of naming and specifying the data they contain. |
ATTRIBUTES ALIGN=(LEFT|CENTER|RIGHT)
Specifies how the next line of text will be aligned with the Input box.
CHECKED Sets a checkbox or radio button to be selected when the form first loads. |
MAXLENGTH=number
Indicates the maximum number of characters that can be entered into a text Input box. |
NAME="text"
Specifies the name of the Input box. |
SIZE="width|(width, height)"
Specifies the size of the Input window (in characters). |
SRC="URL"
Specifies the address of the image to use. Used when TYPE=IMAGE. |
TYPE=(TEXT | PASSWORD | CHECKBOX | RADIO | SUBMIT | RESET | FILE | HIDDEN | IMAGE)
Specifies what type of Input to use. |
VALUE
For texual/numerical Inputs, specifies the default value of the Input box. Is used to specify the value to be returned when the Input box used. |