且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何使用 DataAnnotations 处理 ASP.NET MVC 2 中的布尔值/复选框?

更新时间:2023-10-15 08:37:40

我是通过创建自定义属性获得的:

I got it by creating a custom attribute:

public class BooleanRequiredAttribute : RequiredAttribute 
{
    public override bool IsValid(object value)
    {
        return value != null && (bool) value;
    }
}