2011年10月11日

MVC2中自定义校验

摘要: 新建一个Mvc2的应用程序;在Models 文件夹下新建一个类EmailAttribute 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.ComponentModel.DataAnnotations; 6 7 namespace MvcTemp.Models 8 { 9 public class EmailAttribute: RegularExpressionAttribute10 {11 ... 阅读全文

posted @ 2011-10-11 18:33 wolfram 阅读(391) 评论(0) 推荐(0) 编辑

导航