我需要一种方法在Web应用程序的编辑视图中的多选下拉列表中设置数据库检索值(ASP.NET,Mvc) (加载页面时,使用选定的值加载下拉列表)
从视图代码中,我将选定的ID传递给选定的值数组。(当我从DB返回值时,将这些值分配给数组然后分配到此处。
我需要通过设置选择已选择的值来编辑视图。
//View
<div class="form-group">
<label>Choose Categories</label>
@Html.DropDownListFor(model => model.SelectedValues, new MultiSelectList(Models.GetCategoryList().OrderBy(c => c.Value), "Key", "Value"), "Select Category", new { @class = "chzn-select form-control", multiple = "multiple" })
</div>
//Model
public int[] SelectedValues { get; set; }
//Controller
public ActionResult Edit(int id)
{
return View(GetDetails(id));
}
在GetDetails(id)中从DB获取值,并返回一个模型对象
public GetDetails()
{
int[] arr = new int[2];
arr[0] = 4;
arr[1] = 5;
modelObj.SelectedValues = arr;
.......
......
return modelObj;
}
请有人建议这样做
谢谢。