Download Now Code Base AsyncDocs Contact Us
asyncCheckBox
liveDemo
Click the checkbox to change the text of the label.
Check the box

Check or uncheck the AsyncCheckBox

Description

The AsyncCheckBox provides you with an Async-Enabled check box server control.



Features
  • Can change it's check state during an AsyncCallback.
  • Allows you to easily receive OnCheckedChanged events.
  • Supports many of the other properties provided by asp:CheckBox.
  • Functions as a regular server control if the browser does not support asynchronus operations, allowing you to support legacy browsers.
   
<%@ Register Assembly="AsyncControls" Namespace="DelvingWare.AsyncControls" TagPrefix="dw" %>

<dw:AsyncCheckBox runat="server" ID="chkMain" 
    Text="Check the box" OnCheckedChanged="chkMain_Checked" />

<dw:AsyncLabel runat="server" ID="lblMain" 
    Text="Check or uncheck the AsyncCheckBox" RenderMode="H4" />