I'm trying to disable a bunch of controls with javascript (so that they postback values). All the controls work fine except for my radio buttons as they loose their value. In the below code which is called via a recursive function to disable all child controls the Second else (else if (control is RadioButton)) is never hit and the radiobutton control is identified as a Checkbox control.
private static void DisableControl(WebControl control)
{
if (control is CheckBox)
{
((CheckBox)control).InputAttributes.Add("disabled", "disabled");
}
else if (control is RadioButton)
{
}
else if (control is ImageButton)
{
((ImageButton)control).Enabled = false;
}
else
{
control.Attributes.Add("readonly", "readonly");
}
}
2 Questions: 1. How do I identify which control is a radiobutton 2. How do I disbable it so that it posts back it's value
