摘要:
在web.config文件中设置:在system.web节点下添加:<httpRuntimemaxRequestLength="4096" />来自http://www.cnblogs.com/xh831213/archive/2007/04/27/729876.html 阅读全文
摘要:
用正则表达式来验证字符串是否为数字字符串。我们要用到Regex类的isMatch()方法。该类在System.Text.RegularExpressions; 您可以通过using System.Text.RegularExpressions;导入命名空间来访问Regex类。也可以直接通过System.Text.RegularExpressions.Regex 来访问。protected bool isNumberic(string message,out int result){ System.Text.RegularExpressions.Regex rex= new System.Te. 阅读全文