4
在ASP.NET MVC4的Razor視圖,如何確保沒有一個單選按鈕默認爲選中的? MVC似乎爲我檢查了一個,即使我沒有聲明在下面的代碼中檢查一個。@ Html.RadioButtonFor默認爲未選中
@Html.RadioButtonFor(model => model.test, true, new { id = "radio_test_True"}) Yes
@Html.RadioButtonFor(model => model.test, false, new { id = "radio_test_False"}) No
感謝
謝謝,使測試可以爲空是關鍵。 – Don