摘要:导入名字空间Microsoft.VisualBasic,该名字空间不是默认的,应该在编译的时候加入/r:Microsoft.VisualBasic进行显式引用。 简转繁String _strStoT = Strings.StrConv("中华人民共和国" , VbStrConv.TraditionalChinese) 繁转简String _strTtoS = Strings.StrConv(...
阅读全文
摘要:循环,是所有程序设计中不可或缺的语法之一,它可以很轻松地实现对一个数组或是集合进行遍历访问,它的执行效率是与所遍历的对象集的数量成正比的。在ASP.NET中,可以通过使用System.Collections.IEnumerator接口来提升此操作的运行效率。如下: ArrayList _arlRegexs = new ArrayList(); ArrayList _arlReplaces = n...
阅读全文
摘要:导入命名空间System.Web.Security MD5加密String _strMD5Password=FormsAuthentication.HashPasswordForStoringInConfigFile("password", "MD5"); SHA1加密String _strSHA1Password=FormsAuthentication.HashPasswordForSt...
阅读全文