在编辑视图中:我正在传递 ddl 的 ViewBag 列表
控制器:
ViewBag.CountryList = new SelectList(db.Country, "CountryCode", "Desc");
在编辑视图中:如何将 viewbag 分配给 ddl 并设置来自模型的值
@Html.EditorFor(model => model.CountryCode) <- contains the Desc Value, currently just shows in a textbox!
谢谢!