While binding dropdown in MVC, I always get this error: There is no ViewData item of type \'IEnumerable\' that has the key country.
There is no ViewData item of type \'IEnumerable\' that has the key country
you can use this:
var list = new SelectList(countryList, "Id", "Name"); ViewBag.countries=list; @Html.DropDownList("countries",ViewBag.countries as SelectList)