我有一个 rad 输入,它只接受指定格式的日期,这工作正常,但是当我尝试在后端将其转换为日期时间(在 c# 代码中)时,它说它的格式不正确。
<telerik:RadDateInput ID="DeliveryDate" runat="server"
MinDate="1/1/1980" MaxDate="12/31/2099" DateFormat="MM/dd/yyyy" Visible="false">
// Throws an error that its not in the correct format
DateTime Test = Convert.ToDateTime(DeliveryDate.Text);
当我在 DateTime 行添加断点时,文本以这种格式传递(我不知道为什么我指定了 MM/dd/yyyy)。
2012-02-03 00:00:00
任何帮助将非常感激。
问候