我的 Web 应用程序上有两个下拉列表。两个下拉列表的填充数据来自数据库。它们包含相同的数据。
我想要的是,如果在第一个下拉列表中选择了其中一个列表,则它不应该在第二个下拉列表中可用。
我有以下剃刀语法:
@Html.DropDownListFor(model => model.Questions1, (SelectList)ViewData["Questions"], "Select>>", new { id = "Questions1", Name = "Questions1"})
@Html.DropDownListFor(model => model.Questions2, (SelectList)ViewData["Questions"], "Select>>", new { id = "Questions2", Name = "Questions2"})
问题来自从数据库中检索的模型。
提前致谢!