7

如何<%Html.Dropdownlist....在 ASP.NET MVC 中动态绑定数据?

4

2 回答 2

15

只需将正确的 IEnumerable 作为类型化模型或 ViewData 传递。尝试这样的事情(在我脑海中):

<%= Html.DropDownList(string.Empty, 
    "myDropDownList",  
    new SelectList((IEnumerable)ViewData["stuff"], 
        "DescriptionProperty", 
        "ValueProperty")) 
%>

使用 MVC 中的下拉列表助手,您不会像在旧 ASP.NET 中那样真正将数据“绑定”到它。

于 2008-10-18T13:12:40.593 回答
1

链接文本下面的链接提供了 2 种绑定下拉列表的方法。绑定下拉列表

于 2009-07-09T17:01:05.733 回答