类属性验证简单说明
Posted bug123456
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类属性验证简单说明相关的知识,希望对你有一定的参考价值。
[Required(ErrorMessage ="用户名称不能为空")]--必须输入
[StringLength(50),MinLength(3)]--最大长度50最小长度3
[RegularExpression(@"")]--正则表达式
[Compare("Age")]--验证2个属性值一样
//[Remote("checkName","N")]服务端回调函数
public string Name { get; set; }
[Range(20,40)]--数字最小值和最大值
public string Age { get; set; }
[Range(typeof(decimal), "0.00", "49.99")]--- double验证
public double aaa { get; set; }
if (ModelState.IsValid)
{
}
以上是关于类属性验证简单说明的主要内容,如果未能解决你的问题,请参考以下文章