Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 个下拉列表,dopdownlint1 和 dropdownlist2。
我们有另一个下拉列表,应该包含 dropdownlist1 和 2 的所有项目。
有没有办法从第一个和第二个填充第三个而不是去数据库并再次填充第三个?
在 ASP.NET MVC 中,推荐使用SelectList为 DropDownList 提供数据;因此,当您填写 SelectList1 和 SelectList2 时,您可以加入它们并为第三个 DropDownList 提供数据。
SelectList
您应该注意不会重复的值。