标签:names 属性 name ann mode ace erro lin pre
一、定义
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel.DataAnnotations; namespace HJ.BaseMetadata { /// <summary> /// 邮箱验证类 /// </summary> public class EmailAttribute :RegularExpressionAttribute { //验证邮箱 public EmailAttribute():base(@"^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$") { } } }
二、调用
[Email(ErrorMessage="邮箱格式不正确")))] public string Email { get; set; }
标签:names 属性 name ann mode ace erro lin pre
原文地址:https://www.cnblogs.com/qiupiaohujie/p/12080251.html