previous | start | next

TEXTAREA

<TEXTAREA
COLS=n
NAME=name
ROWS=n>
</TEXTAREA>

Creates a multiline text entry control in which the user can type and edit text. The end-tag is required.

COLS=n
Sets the width, in characters, of the text area.
NAME=name
Sets the name of the text area. This name is used when the element is used within a FORM element.
ROWS=n
Sets the height, in characters, of the text area.

Any text between the start-tag and end-tag is used as the initial value for the control.



previous | start | next