Как заполнить один выпадающий список на основе значений, выбранных в другом выпадающем списке, используя javascript в ASP .NET?
I have two DropDownLists inside a GridView (gvwDta). My two DropDownLists are:
<asp:DropDownList ID="ddlStatus" runat="server"> <asp:ListItem></asp:ListItem> <asp:ListItem>Ma</asp:ListItem> <asp:ListItem>Mi</asp:ListItem> <asp:ListItem>Others</asp:ListItem> </asp:DropDownList>
и
<asp:DropDownList ID="ddlReason" runat="server"></asp:DropDownList>
Я хочу достичь этого:
Когда я выбираю "Ma" из "ddlStatus", то я должен получить следующие элементы в "ddlReason":
"OK" "Good" When I select "Mi" from "ddlStatus" then I should get the following items in "ddlReason": "Data" "Resource" "Time" I do not want to bind the DropDownLists to database or use AJAX. Any help will be highly appreciated. Regards
Что я уже пробовал:
Я попробовал предложения по этой ссылке:
http://www.aspsnippets.com/Articles/Get-selected-Text-and-Value-of-DropDownList-in-OnChange-event-using-JavaScript-and-jQuery.aspx