验证日期格式代码
public bool IsDate(string str)
{
try
{
DateTime.Parse(str);
return true;
}
catch (Exception e)
{
return false;
}
}

浙公网安备 33010602011771号