There is no ViewData item of type 'IEnumerable' that has the key country

后端 未结 11 2173
鱼传尺愫
鱼传尺愫 2020-12-03 07:52

While binding dropdown in MVC, I always get this error: There is no ViewData item of type \'IEnumerable\' that has the key country.

<
11条回答
  •  失恋的感觉
    2020-12-03 08:08

    you can use this:

     var list = new SelectList(countryList, "Id", "Name");
     ViewBag.countries=list;
     @Html.DropDownList("countries",ViewBag.countries as SelectList)
    

提交回复
热议问题