我有这样的事情:
public class MyClass
{
public int Id {get;set;}
public bool First {get;set;}
public bool Second {get;set;}
public bool Third {get;set;}
}
现在,我想生成一些东西,它会显示这个:
First - [checkbox]
Second - [checkbox]
Third - [checkbox]
[Submit]
我希望这些复选框从这些属性中只选择一项,我该怎么做?
编辑:对不起,伙计们,我真的不需要复选框,我需要的是单选按钮。如果有人有任何示例代码显示如何使用单选按钮解决我的问题,我将不胜感激。