philzhou

导航

2011年9月6日 #

aspnet mvc 2 DataAnnotation Client and Server Validation

摘要: Asp.net mvc 使用DataAnnotation标签来做验证。public partial class PatternMeta { public int id { get; set; } [Required] [DisplayName("名称")] public string name { get; set; } [Required] [DisplayName("编码")] public string code { get; set; } [Range(1,20)] ... 阅读全文

posted @ 2011-09-06 19:14 philzhou 阅读(321) 评论(0) 推荐(0)