HyperTextMarkupLanguage

HTML Advanced Functions


| Home | Agenda | Next |

Input Fields - Continued

TYPE = "HIDDEN"
Required: [VALUE]

Creates information on a form that is not displayed but is passed along to the server.

Example:

        <FORM>
        <INPUT TYPE=hidden VALUE="fromwebsite2">
        </FORM>
VALUE: specifies the text that will be sent to the server
| Home | Agenda | Next |

T10D028