asp.net-mvc-3 – 绑定到MVC3中的DropDownList

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-3 – 绑定到MVC3中的DropDownList前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以前,我在我的模型中使用它
public List<SelectListItem> StatusList { get; set; }
 public string Status { get; set; }

这在我看来绑定到Dropdownlist

@Html.DropDownListFor(model => model.Status,Model.StatusList,"")

但如果我想用

public List<ICode> StatusList { get; set; }

其中ICode如下

public interface ICode
{
    int Id { get; set; }
    ICodeGroup CodeGroup { get; set; }
    string ShortDescription { get; set; }
    string LongDescription { get; set; }
}

我应该在视图和模型中做些什么?

解决方法

Cyber​​nate的解决方案有效.你也可以这样做:
@Html.DropDownListFor(model => model.Status,new SelectList(Model.StatusList,"Id","ShortDescription"))

Cyber​​nate的版本将进行更强大的类型检查,但SelectList更加封装.

原文链接:https://www.f2er.com/aspnet/249228.html

猜你在找的asp.Net相关文章