我有一个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
非常感谢任何帮助。
此致
答案 0 :(得分:2)
使用DateTime test = DeliveryDate.SelectedDate
代替