摘要: Info from :http://www.cnblogs.com/yugen/archive/2010/08/18/1802781.html1、用字符串分隔:usingSystem.Text.RegularExpressions;stringstr="aaajsbbbjsccc";string[]sArray=Regex.Split(str,"js",RegexOptions.IgnoreCase);foreach(stringiinsArray)Response.Write(i.ToString()+"");输出结果:aaabbb 阅读全文
posted @ 2014-03-07 16:43 Vincent.Dr 阅读(231) 评论(0) 推荐(0)
摘要: We need to configure Timestamp in Mapping.eg.Map(x => x.ResponseDate).CustomType("Timestamp"); 阅读全文
posted @ 2014-03-07 12:26 Vincent.Dr 阅读(160) 评论(0) 推荐(0)