在MVC4中验证数字但不等于0

时间:2013-04-18 06:31:08

标签: asp.net-mvc-4

我想在mvc4中使用DataAnnotations只为数字但有效值大于0,请帮忙。

感谢。

1 个答案:

答案 0 :(得分:24)

您可以使用[Range]属性:

[Range(1, int.MaxValue, ErrorMessage = "The value must be greater than 0")]
public int Value { get; set; }