Hi
I have a label set to show up when a user has not selected an item from the radio button list.
How do I get it to go away when a user selects an item?
My code so far is:
selectBachLabel.Visible = true;
if (bachSelectionRadioButtonList.SelectedItem == null)
{
selectBachLabel.Text = "Select the Bush or the Beach bach.";
}