标签:验证 辅助 base class pac 表示 hang ota 格式
通过为模型类增加数据描述的 DataAnnotations ,我们可以容易地为应用程序增加验证的功能。DataAnnotations 允许我们描述希望应用在模型属性上的验证规则,ASP.NET MVC 将会使用这些 DataAnnotations ,然后将适当的验证信息返回给用户。
常用的 DataAnnotations 包括:
using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace SKUOrderMVC.Models { public class ChangePassword { [Required] [Display(Name = "Email")] [EmailAddress] public string Email { get; set; } [Required] [DataType(DataType.Password)] [StringLength(32, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)] [Display(Name = "Password")] public string Password { get; set; } [DataType(DataType.Password)] [Display(Name = "Confirm password")] [Compare("Password", ErrorMessage = "The password and confirmation password do not match.")] public string ConfirmPassword { get; set; } } }
当然还有其他的一些属性,比如正则表达式等,不用辅助编码就可以完成对数据输入格式的验证。
Asp.Net MVC 使用 DataAnnotations 进行模型验证
标签:验证 辅助 base class pac 表示 hang ota 格式
原文地址:http://www.cnblogs.com/XM-Zhangjh/p/6675943.html