Example of Checkbox in ASP.NET MVC Button Control
This sample demonstrates the default functionalities of the CheckBox. Click the CheckBox element to toggle states between checked/unchecked.
CheckBox is a graphical user interface element that allows to select one or more options from the choices. It contains checked, unchecked, and indeterminate states.
In this sample, checked state is achieved by using the
In this sample, checked state is achieved by using the
checked
opens in a new tab
property, indeterminate state is achieved by using the
indeterminate
opens in a new tab
property, and disabled state is achieved by using the
disabled
opens in a new tab
property.
More information about CheckBox can be found in this documentation section opens in a new tab .