私はいくつかの値で1つのドロップダウンをバインドし、選択したドロップダウンが変更されたときに投稿アクションを呼び出しました。
@Html.DropDownListFor(m => m.DistrictId, Model.DistrictList, "Select", new
{
disableValidation = "true",
onchange = @"
var form = document.forms[0];
form.action='Index';
form.submit();"
})
これは、 call my controller post action に対して正常に機能しています。しかし、モデルの DistrictId プロパティでドロップダウン選択値を取得できません。
私のコントローラ関数は以下のようになります
[HttpPost]
public ActionResult Index(HomeModel homeModel)
{
AdminController adminController = new AdminController();
Guid userId = new Guid();
homeModel.ComplianceModelList = complianceRepository.LoadComplianceModel(userId, homeModel.DistrictId);
LoadDistrict(homeModel);
return View(homeModel);
}
homeModel.DistrictId プロパティで選択した DistrictId をドロップダウンしたい。
実行する方法 ?