public void setNoOption(object sender, EventArgs e)
{
string selVal = rbRootCause.SelectedIndex.ToString();
foreach (ListItem li in rbRootCause.Items)
{
if (li.Text == "No")
{ li.Attributes["onclick"] = "showWhyNot(" + rbRootCause.ClientID + ",'block');"; }
else
{ li.Attributes["onclick"] = "showWhyNot(" + rbRootCause.ClientID + ",'none');"; }
}
}