0

我有一个强类型模型。

@model IPACS.Models.IPACS_Departments

这个模型有一个departmentID, name, description, owner.

我需要从这个模型中填充一个 DropDownList 但我不确定如何?

我希望值是 thedepartmentID并且文本是name

这是我正在使用的模型。

那我的模型有问题吗?

公共 IPACS_Departments() { this.IPACS_Functions = new HashSet(); this.IPACS_Document = new HashSet(); }

    [Key]public int departmentID { get; set; }
    public string name { get; set; }
    public string description { get; set; }
    public string owner { get; set; }

    public virtual ICollection<IPACS_Functions> IPACS_Functions { get; set; }
    public virtual ICollection<IPACS_Document> IPACS_Document { get; set; }

我已经尝试了下面答案中的语法,但它不会编译。

我的 model.departmentID、model.name、model.description、model.owner 我不确定我在这里缺少什么。

4

1 回答 1

0

有很多关于此的帖子和文档。这里有一些可以帮助你的东西:

填充 ASP.NET MVC DropDownList

<%= Html.DropDownListFor(model => model.YourId, new SelectList(Model.YourList, "ValuePath", "TextPath"))%>
于 2013-05-14T22:19:17.837 回答