asp.net-mvc – 使用MVC使用List填充@ Html.DropDownList

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 使用MVC使用List填充@ Html.DropDownList前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用MVC和Razor填充带有List的@ Html.DropDownList.
贝娄是我的控制器代码.所以我需要从ViewBag中选择列表并填写下拉列表.
public ActionResult Register()
    {
        sparklingEntities context = new sparklingEntities();
        var query = (from discs in context.Disciplines
                     select discs).ToList();
        List<string> listOfDiscs = new List<string>();
        foreach (var item in query)
        {
            listOfDiscs.Add(item.Discipline);
        }
        ViewBag.ListOfDisciplines = listOfDiscs;
        return View();
    }

谢谢您的帮助.

解决方法

如果这是在您的模型属性的编辑器中:
@Html.DropDownList("",new SelectList(ViewBag.ListOfDisciplines,Model))
原文链接:https://www.f2er.com/aspnet/247628.html

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