@Html.DropDownListFor(model => model.intCompanyId,
(List<SelectListItem>)ViewBag.ExpItemList,
"--Select--",
new
{
@class = "form-control",
@onchange = "GetEmployeeListForthisComp(this.value)"
})
上面的代码给出了以下错误
无法转换类型 &#39;&System.Collections.Generic.List LT; L7HRM.Models.ExpenseItemMaster&GT;&#39;至 &#39;&System.Collections.Generic.List LT; System.Web.Mvc.SelectListItem&GT;&#39;
答案 0 :(得分:1)
因为ViewBag.ExpItemList
不属于List<SelectListItem>