如何设置MVC5 DropDownList的选定值?

时间:2017-10-22 11:14:24

标签: asp.net asp.net-mvc-5

给出以下MVC5代码:

@Html.DropDownList(name: "Enhanced_Rijndael_AlgorithmID", optionLabel: null, selectList: EnhancedRijndaelAvailableHashAlgorithmList.Select(item => new SelectListItem
{
    Value = item.RecordID.ToString(),
    Text = item.HashAlgorithm,
    Selected = "select" == item.RecordID.ToString()
}), htmlAttributes: new { @class = "form-control" })

是否可以设置"选择的值"这个清单?

我唯一能想到的是以某种方式设置SelectListItem集中的选定值。

1 个答案:

答案 0 :(得分:0)

以下是我在提醒var app1 = document.querySelector('#App1'); app1Parent = app1.parentElement; app1.remove(); app1Parent.appendChild(app1);

后想出的内容
DropDownListFor