0

我想在我的网页中包含我的对象(从数据库中读取)的下拉列表。

这是我的对象:

public class MyObject
{
    public int id { get; set; }
    public string fileName { get; set; }

    public string browser { get; set; }

    public string protocol { get; set; }

    public string family { get; set; }
}

我的控制器:

public ActionResult Index()
{
    List<MyObject> list = db.MyObjects.Where(x => x.family == "Web").ToList();
    ViewBag.Files = lList;
    return View();
}

索引.cshtml

@model IEnumerable<MyApplication.Models.MyObject>
@{
    ViewBag.Title = "Index";    
}

不知道如何从这里继续。

4

1 回答 1

1

试试这个

public ActionResult Index()
{
    List<MyObject> list = db.MyObjects.Where(x => x.family == "Web").ToList();
    ViewBag.Files =new SelectList(list,"Id","fileName)";
    return View();
}

在视图中添加

  @Html.DropDownList("File",new SelectList(ViewBag.Files))
于 2013-11-09T18:34:16.943 回答