Добавьте опцию "Все" в список и измените ее динамически на основе выбора в раскрывающемся списке в разделе ASP.NET
I have a drop down list with names of countries and a list box with different types of season like summer, winter etc In ASP.Net and both of them gets updated from a table in my database in the page_load event. During the Page_load event my drop down list and list box gets updated with all the available countries and seasons present in the table in the database. My list box changes dynamically after the country is selected in my drop down list. For example, if I choose USA, then season would change dynamically like fall, winter, summer. Right now it works perfectly. The only thing I want is to add an "ALL" option at the top of my list box if a country is selected which has all the seasons. For example if I choose country "X" in my drop down list and it has all the weathers present in my database, the list box would have an "ALL" option at the top. Basically the "ALL" option would pop up only when all the seasons during the page_load event matches the seasons after a country is selected.
Что я уже пробовал:
Я попытался получить общее количество списка после того, как моя страница загрузилась в первый раз, как это
protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { int countListBox = lb.Items.Count; } }
protected void ddl_SelectedIndexChanged(object sender, EventArgs e) { if (lb.Items.Count == countListBox) { lb.Items.Insert(0, "All"); } }
Gerry Schmitz
Я продолжаю читать и все еще не "понимаю". В чем смысл "всего"? В каждой стране есть "4 сезона", идет ли снег или нет.
Если "сезон" означает что-то еще, то просто добавьте несколько дополнительных столбцов (bool) в "список", чтобы указать "x сезон присутствует" (или что-то еще).
Member 13863605
Я хочу добавить "все". Это обязательное условие. Не имеет значения, есть ли в каждой стране четыре сезона или нет. У нас во многих азиатских странах есть шесть сезонов, поэтому все страны не обязательно имеют четыре сезона.
Vincent Maverick Durano
Но как определить, все ли сезоны связаны с той или иной страной? У вас есть что-то вроде флага в базе данных, чтобы определить это?