So I have a drop down list with various options, one being other. I want it so that if the user selects user the text box automatically appears. Ive placed the text box in a panel and set the visibility to false then added the following code :
protected void dropDownList_SelectedIndexChanged(object sender, EventArgs e)
{
if (dropDownList.SelectedItem.Value == "other")
pnlText.Visible = true;
else
pnlText.Visible = false;
}
however it doesn't work, when i select other from the drop down list the text box doesn't appear.