2012-05-05 67 views
0

我正在使用Mvc3 +剃鬚刀,我如何在我的視圖中嵌入單選按鈕。 例如:我有兩個選項,當我點擊第一個第二個時應該禁用,並且我有另一個查詢,我們如何才能在Throw Jquery中獲得單選按鈕值。提前致謝。如何在Mvc3 +剃鬚刀中使用單選按鈕

回答

1
<td style="background-color:#FFE4B5;color:#008080"> 
<label>@Html.RadioButton("Gender","True")Male</label></td> 
<td style="background-color:#FFC0CB;color:#FF6347"><label>@Html.RadioButton("Gender", 
"False")Female</label></td> 
0

您可以使用枚舉來保存選定的值。

public enum Selection 
{ 
    Option1, 
    Option2 
} 

public class ViewModel 
{ 
    public Selection SelectedValue {get;set;} 
} 

View: 
    @Html.RadioButtonFor(m => m.SelectedValue, "Option1") 
    @Html.RadioButtonFor(m => m.SelectedValue, "Option2")