Hey All,
I'm trying to get a checkbox to automatically be checked depending on something but its not working, my code is:
if (Avail == "Yes")
{
CheckBoxAvail.Checked = true;
}
else
{
CheckBoxAvail.Checked = false;
}
any ideas why this is not working??
Stelly
I'm trying to get a checkbox to automatically be checked depending on something but its not working, my code is:
if (Avail == "Yes")
{
CheckBoxAvail.Checked = true;
}
else
{
CheckBoxAvail.Checked = false;
}
any ideas why this is not working??
Stelly