リストがあり、このリストをドロップダウン ボックスに入力したいと考えています。
コントローラーから:
public ActionResult Index()
{
List<SelectListItem> hum = allHuman();
return View();
}
ビューから:
@Html.DropDownListFor( ..... // NOW HOW CAN I DISPLAY THE VALUES IN THE DROPDOWNLIST ?