0
내가 컨트롤러 DropDownList로 항목을 선택하여 null 값을 얻고있다.에 @ Html.DropDownList에 null 값을 받고MVC
다음이 내 코드
컨트롤러
[I 디버그 모드에서 수행하여 보았다]public ActionResult Index()
{
var jobStatusList = new SelectList(new[]
{
new { ID = "1", Name = "Full Time" },
new { ID = "2", Name = "Part Time" },
},
"ID", "Name", 1);
ViewData["JobStatusList"] = jobStatusList;
}
public ActionResult Create(StaffRegistrationViewModel staffRegistrationViewModel)
{
//Here is my code
}
보기
staffRegistrationViewModel에서@using (Html.BeginForm("Create", "StaffRegistration", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
@Html.AntiForgeryToken()
@Html.DropDownList("jobStatusList",ViewData["JobStatusList"] as SelectList)
}
은 상태에서 null 값을 받고 들.
당신은
당신이 나에게 그 목록 구문을 제공 할 수있다 어떻게 속성을 추가하고보기 드롭 다운 목록을 호출 할 수 있습니다. –
업데이트 된 답변보기 – Shyju