So have a drop down list with various values, one of them being "other". I have written code so that when "other" is selected a panel which has text boxes in it is made visible.
if (ddlOption.SelectedItem.Text == "Other")
{
panelNext.Visible = true;
}
else
{
panelNext.Visible = false;
}
This is the back end code I have.
Any suggestions?