这是我的行动方法:
public ActionResult Index()
{
List<SelectListItem> Courses = new List<SelectListItem>();
Courses.Add(new SelectListItem{Text="Math", Value = "1"});
Courses.Add(new SelectListItem { Text = "Science", Value = "2"});
Courses.Add(new SelectListItem{Text="Literature", Value = "3"});
ViewBag.hardCodedList = Courses;
return View();
}
我知道我可以这样做:
@Html.DropDownList("hardCodedList", "SelectList")
但是下拉列表名称也是hardCodedList。
这里我想将列表名称指定为CourseList,我在我的索引视图中尝试这个:
@Html.DropDownList("CourseList", ViewBag.hardCodedList, "SelectList")
但它不起作用:
我也知道如果我通过这样的匿名列表,我可以指定列表的名称:
@Html.DropDownList("CourseList", new List<SelectListItem>
{
new SelectListItem { Text = "IT", Value = "1", Selected=true},
new SelectListItem { Text = "HR", Value = "2"},
new SelectListItem { Text = "Finance", Value = "3"}
}, "SelectList")
但是在这里我想将列表保留在我的action方法中,而不是在视图中。在这种情况下如何指定名称?
答案 0 :(得分:2)
Viewbag是动态的,所以尝试投射它。
变化
@Html.DropDownList("CourseList", ViewBag.hardCodedList, "SelectList")
类似于:
@Html.DropDownList("CourseList", ViewBag.hardCodedList as List<SelectListItem>, "SelectList")