H
headware
How can I disable a single radio button in a RadioButtonList? I tried doing this:
radioList.Items[1].Attributes.Add("disabled", "true");
radioList.Items[5].Attributes.Add("disabled", "true");
but it didn't output the correct HTML (no disabled attribute).
Thanks,
Dave
radioList.Items[1].Attributes.Add("disabled", "true");
radioList.Items[5].Attributes.Add("disabled", "true");
but it didn't output the correct HTML (no disabled attribute).
Thanks,
Dave