Standard Controls of ASP.NET web form with properties and event




Standard Controls: -
               Basically, we can say that ASP.NET standard controls are used to create HTML Components on our web page.
This is basically small building blocks of GUI which include Textbox, Radio Button, textbox, Label etc. and using this user can enter their data

Label: - Used to display Text something on our web page
Event: - Label Have Not Any Kind of Event.
Properties: - Text, Back-colour, Font










2. Button: - Used to create a Button.
               Events: - Click Event.
               Properties: - Text, PostbackURL, visible










3) Textbox: - Used to Get Textbox for our web page.
               Properties: - Text, Text mode, Row, Column, max length,
               Event: Text Change











4) Checkbox: - used to get multiple values from used
               Properties: - Text, Text Align, checked
               Event: -checked change.







5) Radio Button: -
               Properties: - Group Name, Text, Text Align, checked
               Event: - Checked changed.













6) Drop Down list: -
               Properties: - Selected Value, Selected Item, Selected Index, Data Text Field, and Data Value Field.
               Event: - Selection Index Change

















7) List Box: - 
               Properties: - Selection Mode, Row, Selected Value.
               Event: - Selected Index Changed.










Comments

Popular posts from this blog

Asp.Net Validation

Fundamental of OOPS From Scratch to End