Google News
logo
ASP.NET - Interview Questions
What are web controls in ASP.NET?
Web server controls are powerful than HTML server-side controls. The only difference is that they must have the runat = "server" attribute set. This attribute makes the control available for server-side programming. Each ASP.NET Server Control is capable of exposing an object model containing properties, methods, and events. This object model can be utilized by the ASP.NET developers to modify and interact with the Web page. Web controls contain all basic controls of HTML controls as well as some new controls like as DataGrid, DataList, and Calendar.

WEB CONTROL DESCRIPTION
Label Represents a label control
ListBox Represents a list box control
CheckBox Represents a Check box control
Calendar Represents a calendar control
ImageButton Represents an image button control
TableCell Represents a table cell
Panel Represents a panel control
DataList Represents a data list control
TextBox Represents a text box control
Image Represents an image control
CheckBoxList Represents a list box with checkboxes
Button Represents a button control
HyperLink Represents a hyperlink control
TableRow Represents a row of a table
RadioButtonList Represents a list box with radio button controls
DataGrid Represents a data grid control
DropDownList Represents a drop-down list control
AdRotator Represents an ad rotator control
RadioButton Represents a radio button control
LinkButton Represents a link button control
Table Represents a table control
Repeater Represents a repeater control
Advertisement