当我在Index方法上设置断点并且在执行第_model.SubCategoryList.Add(new SelectListItem { Text = "Select Any ", Value = "0" });
行之后,我得到了以下错误。
类型' System.NullReferenceException'的例外情况发生在Proj.Web.dll中但未在用户代码中处理
附加信息:未将对象引用设置为对象的实例。
public ActionResult Index()
{
_model = new FA_AssetCreationModel { };
_model.SubCategoryList.Add(new SelectListItem { Text = "Select Any ", Value = "0" });
return View("Creation", _model);
}
我需要在页面加载时为下拉列表设置默认值,以避免出现另一个错误Value cannot be null. Parameter name: items
。