Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Detecting the value of a checkbox
Message
Information générale
Forum:
ASP.NET
Catégorie:
The Mere Mortals .NET Framework
Divers
Thread ID:
00940363
Message ID:
00940406
Vues:
17
Yep, Checked is a bool value, so you can test directly against it:
if (this.chkDLCOM.Checked)
{
     //It's checked
}
else
{
     //It's not
}
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform