我想在 MVC4 中使用
DataAnnotations
您可以使用
[Range]
[Range(1, int.MaxValue, ErrorMessage = "The value must be greater than 0")] public int Value { get; set; }