So is an [Email] attribute built in ASP.NET MVC 3 or not?

前端 未结 4 1627
小鲜肉
小鲜肉 2021-02-20 03:11

The [Email] attribute was going to be built into ASP.NET MVC 3 as it was in futures? So is it now available or not? I guess it is quite a dumb question but I\'ve sp

4条回答
  •  面向向阳花
    2021-02-20 03:57

    You can include System.ComponentModel.DataAnnotations and use

        [DataType(DataType.EmailAddress)]
        public String ToAddress { get; set; }
    

提交回复
热议问题