Fork me on GitHub

李可

导航

2015年9月16日 #

ASP.NET MVC4系列验证机制、伙伴类共享源数据信息(数据注解和验证)

摘要: 一,mvc前后台验证自定义属性标签MyRegularExpressionusing System;using System.Collections.Generic;using System.ComponentModel.DataAnnotations;using System.Linq;using ... 阅读全文

posted @ 2015-09-16 15:35 李可在江湖 阅读(476) 评论(0) 推荐(0) 编辑

正则表达式

摘要: asp.net 验证正则表达式整数或者小数:^[0-9]+\.{0,1}[0-9]{0,2}$只能输入数字:"^[0-9]*$"。只能输入n位的数字:"^\d{n}$"。只能输入至少n位的数字:"^\d{n,}$"。只能输入m~n位的数字:。"^\d{m,n}$"只能输入零和非零开头的数字:"^(0... 阅读全文

posted @ 2015-09-16 13:16 李可在江湖 阅读(191) 评论(0) 推荐(0) 编辑