Hi
I have the below if statement which will show the panel depend on the selected value , the question is can i add many of values for example: if (Catedrdoads.SelectedValue == "Apartment, Villa, room") instead if (Catedrdoads.SelectedValue == "Apartment")
if (Catedrdoads.SelectedValue == "Apartment")
{
//If so then show the panel
hompan.Visible = true;
}
else
{
//If not then hide the panel
hompan.Visible = false;
}
Go to the complete details ...