所以我有以下(伪代码):
string selectedvalud = "C";
List<SelectListItem> list= new List<SelectListItem>();
foreach(var item in mymodelinstance.Codes){
list.Add(new SelectListItem { Text = item.Name, Value = item.Id.Tostring(), Selected = item.Id.ToString() == selectedvalue ? true : false });
}
ViewBag.ListOfCodes = list;
在我看来:
<%: Html.DropDownList("Codes", (List<SelectListItem>)ViewBag.ListOfCodes , new { style = "max-width: 600px;" })%>
现在,在它到达视图之前,“list”已经用项目填充它并标记了已经选择的项目。但是当它到达视图时,没有任何选项被标记为已选中。
我的问题是,是否可以使用viewbag来传递项目,还是应该使用不同的媒体?因为如果我以这种方式使用它,它会删除选项上的选定标志。
答案 0 :(得分:22)
试试这样:
ViewBag.ListOfCodes = new SelectList(mymodelinstance.Codes, "Id", "Name");
ViewBag.Codes = "C";
并在您看来:
<%= Html.DropDownList(
"Codes",
(IEnumerable<SelectListItem>)ViewBag.ListOfCodes,
new { style = "max-width: 600px;" }
) %>
为了实现这一点,你显然必须在你的收藏中有一个Id =“C”的项目,如下所示:
ViewBag.ListOfCodes = new SelectList(new[]
{
new { Id = "A", Name = "Code A" },
new { Id = "B", Name = "Code B" },
new { Id = "C", Name = "Code C" },
}, "Id", "Name");