How can we check the condition for CheckBox Control either it is Checked or Unchecked
? How can we check the condition for CheckBox Control either it is Checked or Unchecked
Select Answer:
if(CheckBox1.checked = = True)
if(CheckBox1.Checked = = True)
if(CheckBox1.check = = True)
if(CheckBox1.Check = = True)
|