本文介绍了字符串不是有效的日期格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
亲爱的所有
我试图通过带有以下代码但面临错误的文本框输入dd-mm-yyyy格式的日期。请告诉我如何解决这个问题。
DateTime dt = Convert.ToDateTime(txtDDate.Text);
string s2 = dt。 ToString(dd-MM-yyyy);
DateTime deliveryDt = Convert.ToDateTime(s2);
问候
解决方案
Dear All
I am trying to input date in dd-mm-yyyy format through a text box with following code but facing the error. Please tell me how to resolve the issue.
DateTime dt = Convert.ToDateTime(txtDDate.Text);
string s2 = dt.ToString("dd-MM-yyyy");
DateTime deliveryDt = Convert.ToDateTime(s2);
Regards
解决方案
这篇关于字符串不是有效的日期格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!