Chapter 2.2-Asp.Net TextBox Control
Description
It includes the description of asp.net Textbox Control with sample code and screen shots
Presentation Transcript
Chapter 2.2 : Chapter 2.2 TextBox Control 1
Slide 2 : ASP.NET Controls: The Text Area Box
Introduction
A text area box is used to request or to display one or more paragraphs of text to the
user. This is a variant of the text box. It uses many lines for its text and therefore can
span as many lines as necessary. It can display scroll bars if its text is longer than its
height can display.
Creating a Text Area Box
To create a text area box, you first add a normal text box before configuring it. You can
add a text box visually or manually. Here is an example:
<%@ Page Language="C#" %>
html>
Exercise