摘要:
aaaaCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-- staticvoidMain(){Stopwatchl_cc_stopWatch=newStopwatch();l_cc_stopWatch.Start();stringl_str_passwo... 阅读全文
摘要:
该方法可以使程序不通过web引用的方式去调用webservices方法,直接在代码里调用该方法就能达到动态调用webservices的目的。使用前先引用System.Web.Services动态链接库,是.net自带的dll。 方法如下: using System; using System.Collections.Generic; using System.Text; using System... 阅读全文
摘要:
RegexOptions options = RegexOptions.None; Regex[] r = new Regex[1]; r[0] = new Regex(@"\[[a-z]+\](\d+)\[[a-z]+\]", options); foreach (Match m in r[0].Matches(p_str_Message)) ... 阅读全文
摘要:
//source輸入的文本 //dispaly爲true,表示格式化特殊字符,如把輸入的空格替換成 換行替(\r\n))換成 //tabs默認爲4 function htmlEncode(source, display, tabs) { function special(source) { var result = ''; for ... 阅读全文