The ListBox server control is very similar to the DropDownList, but differs in its display. You can have more than one item at a time shown to the user. The ListBox also enables users to select more than one item at time. For example, if you have a site that delivers news to its users […]
asp.net
ASP.NET Image Control Example
The Image control supports the following properties (this is not a complete list): AlternateText — Enables you to provide alternate text for the image (required for accessibility). DescriptionUrl — Enables you to provide a link to a page that contains a detailed description of the image (required to make a complex image accessible). GenerateEmptyAlternateText — […]
How to use NumericUpDownExtender in asp.net ajax
NumericUpDownExtender in asp.net ajax The NumericUpDownExtender control allows you to put some up/down indicators next to a TextBox control that enable the end-user to control a selection more easily. A simple example of this is illustrated: <%@ Page Language=”C#” %> <%@ Register Assembly=”AjaxControlToolkit” Namespace=”AjaxControlToolkit” TagPrefix=”cc1″ %> <html xmlns=”http://www.w3.org/1999/xhtml”> <head runat=”server”> <title>NumericUpDownExtender Control</title> </head> <body> <form […]