The HtmlInputCheckBox control allows developers to program against the HTML <input type=checkbox>
element. Developers can use this control with the HtmlInputButton control and events to determine whether a check box is selected. This is done using the Checked property on this control.
Note This control does not require a closing tag.
ASP+ Syntax
Required properties are noted in boldface type.
<input type=checkbox runat=server id="programmaticID" checked >
Tasks
Writing Event Handlers for Server Controls
Tracking Changes to a Check Box
See Also