1<html>
2 <head>
3 <title>Textarea Elements</title>
4 </head>
5 <body>
6 <form>
7 <label for="multiLineInput"> <!-- Add the label if you want -->
8 <p>This is an input element that can include new lines:</p>
9 <textarea rows="5" cols="50" id="multiLineInput"></textarea>
10 </label>
11 <!-- rows for length, cols for width. Both aren't required -->
12 </form>
13 </body>
14</html>
15
1<TextBox
2 Name="tbMultiLine"
3 TextWrapping="Wrap"
4 AcceptsReturn="True"
5 VerticalScrollBarVisibility="Visible"
6>
7 This TextBox will allow the user to enter multiple lines of text. When the RETURN key is pressed,
8 or when typed text reaches the edge of the text box, a new line is automatically inserted.
9</TextBox>
10