MVC3'de dropdown kontrolüne viewbag ile taşınan liste, post işlemi sırasında
value cannot be null, paramater name: items
Oluşan hata:
Line 27: </div>
Line 28: <div class="editor-field">
Line 29: @Html.DropDownListFor(Model => Model.carId,
new SelectList(ViewBag.Cars as System.Collections.IEnumerable, "CarId", "CarName"),
Line 30: "Select a Car", new { id = "ddlCars" })
Line 31: </div>
yukarıda görüldüğü gibi, post işlemi yapılır yapılmaz hataya düşüyor.
Çözüm:
http://stackoverflow.com/questions/5207355/dropdownlist-items-null-when-posting-to-edit-form
adresinden de görüleceği üzere,
ilgili action'da dönen değer view'da görüntülenmeden önce liste bir kez daha doldurulmalı.
[HttpPost]
public ActionResult Add(ViewModelKart kart)
{
if (ModelState.IsValid)
{
return RedirectToAction("Index", "Home");
}
ViewBag.Cars = db.GetCarList();
return View(kart);
}