Tutorial by Examples

Text box controls are typically used to accept input from the user. A text box control can accept one or more lines of text depending upon the settings of the TextMode attribute. Label controls provide an easy way to display text which can be changed from one execution of a page to the next. If you...
A check box displays a single option that the user can either check or uncheck and radio buttons present a group of options from which the user can select just one option. To create a group of radio buttons, you specify the same name for the GroupName attribute of each radio button in the group. If...
ASP.NET provides the following controls Drop-down list List box Radio button list Check box list Bulleted list These control let a user choose from one or more items from the list. List boxes and drop-down lists contain one or more list items. These lists can be loaded either by code or b...
A radio button list presents a list of mutually exclusive options. A check box list presents a list of independent options. These controls contain a collection of ListItem objects that could be referred to through the Items property of the control. Basic syntax of radio button list: <asp:RadioB...
The bulleted list control creates bulleted lists or numbered lists. These controls contain a collection of ListItem objects that could be referred to through the Items property of the control. Basic syntax of a bulleted list: <asp:BulletedList ID="BulletedList1" runat="server&quo...
The HyperLink control is like the HTML element. Basic syntax for a hyperlink control: <asp:HyperLink ID="HyperLink1" runat="server"> HyperLink </asp:HyperLink> It has the following important properties: PropertiesDescriptionImageUrlPath of the image to be ...
The image control is used for displaying images on the web page, or some alternative text, if the image is not available. Basic syntax for an image control: <asp:Image ID="Image1" runat="server"> It has the following important properties: PropertiesDescriptionAlternat...

Page 1 of 1