摘要: using System; using System.Collections.Generic; using System.Text; using System.Net.Mail; using System.Net.Mime; namespace Maticsoft.BLL { public class SendMail { private MailMessage m... 阅读全文
posted @ 2009-01-15 08:55 _也许, 阅读(413) 评论(0) 推荐(0)
摘要: using System; using System.Text.RegularExpressions; namespace CurrencyLibraries.CurrencyCSLibraries.Validate { /// /// 正则表达式验证类。 /// public class ValidationInfo { private static Regex regex; ... 阅读全文
posted @ 2008-12-11 12:21 _也许, 阅读(184) 评论(0) 推荐(0)
摘要: //去掉左边的空格 function ltrim(s) { return s.replace( /^\s*/, ""); } //去掉右边的空格 function rtrim(s) { return s.replace( /\s*$/, ""); } //去掉左右两边的空格 func... 阅读全文
posted @ 2008-12-09 09:22 _也许, 阅读(174) 评论(0) 推荐(0)