private bool ChkDate(string str)
{
try
{
DateTime t1 = DateTime.Parse(str);
return true; //返回真
}
catch
{
return false;
}
}