Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Detecting the value of a checkbox
Message
General information
Forum:
ASP.NET
Category:
The Mere Mortals .NET Framework
Miscellaneous
Thread ID:
00940363
Message ID:
00940406
Views:
18
Yep, Checked is a bool value, so you can test directly against it:
if (this.chkDLCOM.Checked)
{
     //It's checked
}
else
{
     //It's not
}
Previous
Reply
Map
View

Click here to load this message in the networking platform