This is how I populate dropdownlist and create html element;
AccountController:
public ActionResult Index()
{
ViewBag.Towns = new SelectList(_skrsService.GetTowns(), "Value", "Text", 1);
return View();
}
...
public List<SelectListItem> GetTowns()
{
var list = UnitOfWork.Repository<SkrsIl>().OrderBy(x => x.Adi).Select(x => new SelectListItem()
{
Text = x.Adi,
Value = x.Kodu.ToString()
}).ToList();
return list;
}
Login.cshtml(Hometown is string field in model bindned to login view page):
@Html.DropDownListFor( x => x.Hometown, ((SelectList)ViewBag.Towns), new { @class = "form-control", placeholder = "Doğum Yeri" })
I expected this to work but getting error, message:
"The ViewData item that has the key 'Hometown' is of type 'System.String' but must be of type 'IEnumerable<SelectListItem>'."
how can I make it work properly? I just expected selectem item value to 'Hometown' property
viewBag.Towns
isnull
- refer this answer. And as a side note, usingnew SelectList()
is pointless extra overhead - your creating an identicalIEnumerable<SelectListItem>
and the 4th parameter of the constructor is ignored - its the value ofHometown
which determines what is selected – user3559349