摘要:
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI; 阅读全文
2007年11月6日 #
摘要:
private static Regex RegNumber = new Regex("^[0-9]+$"); //正整数 private static Regex RegNumberSign = new Regex("^[+-]?[0-9]+$"); //正整数或负整数 private static Regex RegDecimal = new Regex("^[0-9]+[.]?[0-9]+$... 阅读全文