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

问题描述 投票:0回答:1

我想在 MVC4 中使用

DataAnnotations
作为仅数字但大于 0 的有效值。

asp.net-mvc-4
1个回答
27
投票

您可以使用

[Range]
属性:

[Range(1, int.MaxValue, ErrorMessage = "The value must be greater than 0")]
public int Value { get; set; }
© www.soinside.com 2019 - 2024. All rights reserved.