/**//// /// 验证日期 /// /// /// public static bool IsDateTime ( string source ) { try { DateTime time = Convert.ToDateTime ( source ); return true; } catch { return false; } }