摘要: //正则表达式 //a) using System; using System.Text.RegularExpressions; public bool IsNumber(String strNumber) { Regex objNotNumberPattern=new Regex("[^0-9.-]"); Regex objTwoDotPattern=new Regex("[0-9]*[.][... 阅读全文
posted @ 2007-09-06 17:25 M' 阅读(489) 评论(0) 推荐(0) 编辑
摘要: HttpFileCollection MyFileColl = HttpContext.Current.Request.Files; HttpPostedFile MyPostedFile = MyFileColl[0]; if (MyPostedFile.ContentType.ToString().ToLower().Index... 阅读全文
posted @ 2007-09-06 14:04 M' 阅读(307) 评论(0) 推荐(0) 编辑