ここから読む:ASP.NET MVC
コントローラ内にアクションSelectCategory
が作成されました-
public ActionResult SelectCategory() {
List<SelectListItem> items = new List<SelectListItem>();
items.Add(new SelectListItem { Text = "Action", Value = "0"});
items.Add(new SelectListItem { Text = "Drama", Value = "1" });
items.Add(new SelectListItem { Text = "Comedy", Value = "2", Selected = true });
ViewBag.MovieType = items;
return View();
}
次の行のデータのバインドを理解できません。
@Html.DropDownList("MovieType")
同様の方法でデータをバインドしている間、
@Html.DropDownList("IdList");
次のエラーが発生します-
キー「IdList」を持つタイプ「IEnumerable」のViewDataアイテムはありません。
コントローラのアクション:
public ActionResult SelectId()
{
List<SelectListItem> items = new List<SelectListItem>();
items.Add(new SelectListItem { Text = "MyId1", Value = "MyId1", Selected=true });
items.Add(new SelectListItem { Text = "MyId2", Value = "MyId2" });
ViewBag.IdList = items;
return View();
}
私は何が欠けていますか?ご協力ありがとうございました !