Hi Folks我正在从数据库中检索名称到下拉列表。现在我想在页面中显示DropDown中的选定值。我的代码就像是检索数据,我使用Fluent数据作为框架。
我的控制器操作
var query = Abc.GetProducts();
ViewBag.EnterpriseId = new SelectList(query.AsEnumerable(), "EnterpriseId", "Name");
return View();
我的观点是, @ Html.DropDownList(“EnterpriseID”,(SelectList)ViewBag.EnterpriseID,“ - 选择资源 - ”)
答案 0 :(得分:0)
您可以使用简单的js:
elem = $('.selectClass');
options = elem.find('option[value="'+DataFromDBHere+'"]');
if(options){
options.prop('selected', 'selected');
}