局部視圖 我使用這樣的文本框。我怎樣才能生成單選按鈕,並在表單集合中獲得所需的值爲YES/NO True/False)????????????????????????????目前,如果我爲以下選擇任何值,「ABC」將爲空。MVC剃刀單選按鈕
<label>@Html.RadioButton("ABC", @Model["ABC"])Yes</label>
<label>@Html.RadioButton("ABC", @Model["ABC"])No</label>
控制器
public int Create(int Id, Dictionary<string, string> formValues)
{
//Something Something
}
顯示你的操作方法代碼。 –
[ASP.NET MVC Yes/No Radio Buttons with Strongly Bound Model MVC]的可能重複(http://stackoverflow.com/questions/2559208/asp-net-mvc-yes-no-radio-buttons-with-strongly -bound-model-mvc) –