HtmlInputCheckBox Class
Assembly: System.Web (in system.web.dll)
Use the HtmlInputCheckBox control to allow the user to select a true or false state. To determine whether the control is selected, use the Checked property. The HtmlInputCheckBox control provides a ServerChange event that is raised when the Checked property changes values between posts to the server. This allows you to create an event handler that performs a custom set of instructions each time the event is raised.
Note |
|---|
| The HtmlInputCheckBox control does not post back to the server when it is clicked. You must provide another control on the Web page that supports posting to the server, such as an HtmlButton control, to send the state of the control back to the server. |
For a list of initial property values for an instance of HtmlInputCheckBox, see the HtmlInputCheckBox constructor.
The following code example demonstrates a set of simple responses to users selecting from a group of HtmlInputCheckBox controls.
<%@ Page Language="C#" %> <html > <script language="C#" runat=server> protected void SubmitBtn_Click(object sender, EventArgs e) { if (Basketball.Checked) { // You like basketball } if (Football.Checked) { // You like football } if (Soccer.Checked) { // You like soccer } } </script> <body> <form id="Form1" method=post runat=server> Enter Interests: <input id="Basketball" checked type=checkbox runat=server> Basketball <input id="Football" type=checkbox runat=server> Football <input id="Soccer" type=checkbox runat="server"> Soccer <input id="Button1" type=button value="Enter" OnServerClick="SubmitBtn_Click" runat=server> </form> </body> </html>
- AspNetHostingPermission for operating in a hosted environment. Demand value: LinkDemand; Permission value: Minimal.
- AspNetHostingPermission for operating in a hosted environment. Demand value: InheritanceDemand; Permission value: Minimal.
System.Web.UI.Control
System.Web.UI.HtmlControls.HtmlControl
System.Web.UI.HtmlControls.HtmlInputControl
System.Web.UI.HtmlControls.HtmlInputCheckBox
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note