2

これらのラジオボックスから選択した値を「リスト」ビューに渡す必要があります

cshtmlファイル

@Html.RadioButtonFor(m => m.SmokeHouse, 1)
@Html.RadioButtonFor(m => m.SmokeHouse, 0)

@Html.RadioButtonFor(m => m.SmokeCar, 1)
@Html.RadioButtonFor(m => m.SmokeCar, 0)

@Html.RadioButtonFor(m => m.SmokeWork, 1)    
@Html.RadioButtonFor(m => m.SmokeWork, 0)

[HttpPost]
public ViewResult SmokingEnvironments()
{
   return View("List");
}

クラス

public class Screen
{
    public int SmokeCar { get; set; }
    public int SmokeHouse { get; set; }
    public int SmokeWork { get; set; }
}
4

1 に答える 1