6

我想在 mvc4 中使用 DataAnnotations 仅用于数字但大于 0 的有效值,请帮助。

谢谢。

4

1 回答 1

27

您可以使用以下[Range]属性:

[Range(1, int.MaxValue, ErrorMessage = "The value must be greater than 0")]
public int Value { get; set; }
于 2013-04-18T06:33:36.620 回答