TextBox Server Control The TextBox Server Control is the control that allow users to submit their information or input text.You can use TextBox control to three different HTML elements in your forms. First, the TextBox …
Read More »Stepping up to Web Server Controls
Button Server Control
Button Server Control It is One of the most common controls that has been used in the Web Forms as a Button server control. Buttons are used to submit forms. The Button control is one …
Read More »DropDownList Server Control
DropDownList Server Control The DropDownList server control allows you to place an HTML select box on your web page when you have a large collection of items from which you want to select a single …
Read More »ListBox Server Control
ListBox Server Control The ListBox server control has a function similar to the DropDownList control. It displays a collection of items. The ListBox control allows the user to make multiple selections from the collection. Code for …
Read More »CheckBox Server Control
CheckBox Server Control The Check boxes on a web form allow you to make selections from a collection of items or to specify a value of an item to be yes/no, on/off, or true/false. The CheckBox control allows you …
Read More »RadioButton Server Control
RadioButton Server Control The RadioButton server control is similar to the CheckBox server control.Radio buttons are generally used in form elements that require at least two options. Code for RadioButton Server Control: <asp:RadioButton ID=”RadioButton1″ runat=”server” …
Read More »Table Server Control
Table Server Control The HTML <table> element is one of the most common formats which is used for displaying a large number of records of information. Code for Table Server Control: <asp:Table ID=”Table1″ runat=”server”> <asp:TableRow …
Read More »Calendar Server Control
Calendar Server Control The Calendar server control is a rich control that allows you to place a full-featured calendar directly on your web pages. Code for Calendar Server Conrol: <asp:Calendar ID=”Calendar1″ runat=”server”></asp:Calendar>
Read More »BulletList Server Control
BulletList Server Control The BulletedList server control is used to display a bulleted list of items in an ordered (using the HTML <ol> element) or unordered (using the HTML <ul> element)way. The BulletStyle attribute changes the style …
Read More »LinkButton Server Control
LinkButton Server Control The LinkButton server control is a variation of the button control that takes the form of a hyperlink in the web page. So When the user clicks the link, it behaves like …
Read More »ImageButton Server Control
ImageButton Server Control The ImageButton control is also a variation of the Button control.it allows you to use a custom image as the form’s button. This means that you can create your own buttons as …
Read More »HyperLink Server Control
The HyperLink server control allows you to programmatically work with any hyperlinks on your web pages. Hyperlinks are the links that allow users to jump from one page to another. Code for Hyperlink Server Control …
Read More »AdRotator Server Control
An AdRotator control allows you to configure a series of advertisements to the end users in your web page. You are able to bind the AdRotator control with two types of Files such as SQLDataSource …
Read More »Panel Server Control
The Panel Server Control contains a set of controls which you can use to manipulate in your ASP.NET pages. It is basically a container for other controls, which allow you to take a group of …
Read More »PlaceHolder Server Control
The PlaceHolder server control works just as its name implies — it is a placeholder by which you insert objects automatically into your page. It acts as a marker with which you can add other …
Read More »