-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTextarea.htm
65 lines (64 loc) · 2.47 KB
/
Textarea.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE HTML 4.0 TRANSITIONAL PUBLIC "_//w3c//dtd html 4.0//en">
<HTML>
<HEAD>
<LINK REL=STYLESHEET TYPE="TEXT/CSS" HREF="STYLES.CSS">
<TITLE> HTML Tutorial </TITLE>
</HEAD>
<body class="MIC">
<H1> TEXTAREA </H1>
This is to be used in the <SPAN CLASS= INTRO> <A HREF="FORM.HTM" TITLE= "Form-Sets Up a Container for a Form"> FORM </A> </SPAN> Tag.
This Tag defines a <SPAN CLASS= INTRO> Multiple Line Text Input Field in a Form. </SPAN>
To specify a <SPAN CLASS= INTRO> Default Value </SPAN>, place the text within the opening
and the closing tags. This is a Container Tag and thus need to be closed.
<H4> Attributes </H4>
<OL>
<LI CLASS="HAND"> COLS :
<SPAN CLASS= MAIN> Indicates <SPAN CLASS="INTRO"> the Width (in Character Widths) </SPAN>
of the Text Input Field.</SPAN>
<LI CLASS="HAND"> DATAFLD :
<SPAN CLASS= MAIN> Selects a <SPAN CLASS="INTRO"> Column from a Previously Identified Source of Tabular Data
</SPAN>.</SPAN>
<LI CLASS="HAND"> DATASRC :
<SPAN CLASS= MAIN> Specifies <SPAN CLASS="INTRO"> the Source of Data for Data Binding
</SPAN>.</SPAN>
<LI CLASS="HAND"> DISABLED :
<SPAN CLASS= MAIN> <SPAN CLASS="INTRO"> Denies Access </SPAN>
to the Input Field.</SPAN>
<LI CLASS="HAND"> NAME :
<SPAN CLASS= MAIN>Gives a Name to the value you pass to the Form
Processor.</SPAN>
<LI CLASS="HAND"> READONLY :
<SPAN CLASS= MAIN> Specifies that <SPAN CLASS="INTRO"> the Visitor can't Change </SPAN>
the contents of the Text Input Field.</SPAN>
<LI CLASS="HAND"> ROWS :
<SPAN CLASS= MAIN> Indicates <SPAN CLASS="INTRO"> the Height (in Lines of Text) </SPAN>
of the Text Input Field.</SPAN>
<H2> Syntax </H2>
<SPAN CLASS= INTRO> <FORM [NAME="NAME"] > </SPAN>
<BR>
<SPAN CLASS= MAIN> <TEXTAREA [NAME="TNAME"] [COLS="n"] [ROWS="m"]> </SPAN>
<BR>
[...Default Value...]
<BR>
<SPAN CLASS= MAIN> </TEXTAREA> </SPAN>
<BR>
<SPAN CLASS= INTRO> </FORM> </SPAN>
<H3> Example </H3>
<SPAN CLASS= INTRO> <FORM [NAME="NAME"] > </SPAN>
<BR>
<SPAN CLASS= MAIN> <TEXTAREA NAME="TXTAREA" COLS="20" ROWS="4"> </SPAN>
<BR>
Comments
<BR>
<SPAN CLASS= MAIN> </TEXTAREA> </SPAN>
<BR>
<SPAN CLASS= INTRO> </FORM> </SPAN>
<H5> Effect </H5>
<FORM NAME="FM">
<TEXTAREA ROWS="4" COLS="20" READONLY> Comments </TEXTAREA>
</FORM>
<A HREF=" INTRO.HTM" TITLE="HTML Tutorial Home-Introduction to HTML"> Home </A>
<BR>
<A HREF=" ABOUT.HTM" TITLE="About HTML Tutorial"> About </A>
</BODY>
</HTML>