ActiveControls (AJAX)
Active Controls allows the browser to communicate with server
without refreshing the current page.
Standard Active Controls
  - 
  TActiveButton
  represents a click button on a Web page. It can be used to trigger a callback request.
  
 
  - 
  TActiveCheckBox
  represents a checkbox on a Web page. It can be used to collect two-state user input
  and can trigger a callback request.
  
 
  - 
  TActiveCustomValidator
  validates a particular control using a callback request.
  
 
  - 
  TActiveHyperLink
  represents a hyperlink on a Web page.
  
 
  - 
  TActiveImage
  represents an image on a Web page.
  
 
  - 
  TActiveImageButton
  represents a click button that has an image as the background.
  It is can be used to trigger a callback request.
  
 
  - 
  TActiveLabel
	represents a label on a Web page.
	The label can be customized via various CSS attributes.
  
 
  - 
  TActiveLinkButton
	represents a hyperlink that can perform a callback request.
  
 
  - 
  TActivePanel
  represents a container for other controls on a Web page. In HTML,
  it is displayed as a <div> element. The panel's contents
  can be replaced during a callback request.
  
 
  - 
  TActiveRadioButton
  represents a radiobutton on a Web page.
  It is mainly used in a group from which users make a choice. It can
  be used to perform a callback request.
  
 
  - 
  TActiveTextBox
	represents a text input field on a Web page.
	It can collect single-line, multi-line or password text input from users.
	It can be used to perform a callback request.
  
 
  - 
  TCallbackOptions
  	callback options such as OnLoading client-side event handlers.
  
 
Active List Controls
  - 
  TActiveCheckBoxList
  displays a list of checkboxes on a Web page and each checkbox
  	can trigger a callback request.
  
 
  - 
  TActiveDropDownList
  displays a dropdown list box that allows users to select a
  single option from a few prespecified ones. It can be used
  to perform a callback request.
  
 
  - 
  TActiveListBox
  displays a list box that allows single or multiple selection. It can be used
  to perform a callback request.
  
 
  - 
  TActiveRadioButtonList
  is similar to TActiveCheckBoxList in every aspect except that each
  TActiveRadioButtonList displays a group of radiobuttons. Each radio button
  can perform a callback request.
  
 
Extended Active Controls
Active Control Abilities
Active Control Infrastructure Classes
The following classes provide the basic infrastructure classes required to
realize the active controls.