摘要: 手机号:"\d{11}"传真号:"\d{7,12}"EMAIL: ".{2,15}@.{2,15}\..{2,4}"邮箱正则表达式:/^[0-9a-zA-Z]+@(([0-9a-zA-Z]+)[.])+[a-z]{2,4}$/i (较好)验证数字:只能输入1个数字表达式 ^\d$描述 匹配一个数字匹... 阅读全文
posted @ 2015-10-30 15:27 Leon_XL 阅读(3117) 评论(0) 推荐(2)
摘要: 表格是可以接受中文的;类型也是nvarchar的;还是出现写中文变问号??这时候请加入转义大写N;如:原查询语句:insert into table1(name) values('蜘蛛侠')修改后的语句:insert into table1(name) values(N'蜘蛛侠') 阅读全文
posted @ 2015-10-17 02:27 Leon_XL 阅读(1455) 评论(4) 推荐(0)
摘要: using System;using System.Configuration;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Security;using System.Web... 阅读全文
posted @ 2015-10-15 20:47 Leon_XL 阅读(421) 评论(0) 推荐(0)
摘要: //封装成一个using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using Syst... 阅读全文
posted @ 2015-10-15 14:42 Leon_XL 阅读(878) 评论(0) 推荐(0)