In This tutorial we will learn about the Text Box Control in Asp.net
The TextBox control is used to get the input from the user of the web application
Properties of a TextBox control
The TextBox control is used to get the input from the user of the web application
Properties of a TextBox control
- Text Mode Property : SingleLine,MultiLine , Password , Date, Month ,Color , Number ,Week , Email,Url
- Rows :When you set the textMode to MultiLine ,use Rows property to control the number of lines to display for a MultiLine TextBox control
- Columns:When you set the textMode to MultiLine ,use Columns property to control the Width of a MultiLine TextBox control
- Text : Get or set the Tex from The TextBox control
- MaxLength : The maximum numbers of characters that a user can enter
- Read only : Set this property to true if you don’t want to allow the user to change the text in the TextBox control
- ToolTip : When the mouse is over the control then tooltip is displayed
- Columns : Use this property to set the width of TextBox control in characters.
- Height : Set the Height
- Width : Set the Width
- PostBack : Automatically Postback when text is changed
No comments:
Write comments