Click here to Skip to main content
15,907,687 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Code as follows:

DGVCalendar.Rows[row].Cells[0].Value = Convert.ToDateTime(dt1.ToString("dd-MM-yy"));



In the above line error shows as follows,

String was not recognised as a valid date time


What is the mistake i made in the above code.

Please help me.

Thanks & Regards,
Narasiman P
Posted
Updated 22-Feb-13 2:52am
v2
Comments
Avinash Shewale 22-Feb-13 9:02am    
will you explain in brief what you wanted to do with this code?
please explain your aim when you post any question.

what is "dt1" here ?

Hi,

First: The valid DateTime string is

yyyy-MM-dd.

Second: Why are you change the DateTime object to string and back to DateTime?

Shouldn't be like this:

DGVCalendar.Rows[row].Cells[0].Value = dt1.ToShortDateString();


Regards
Jegan
 
Share this answer
 
hi professional

basically "String was not recognized as a valid date time" error occurs when you did not putting right date time format.

so try this...

C#
DGVCalendar.Rows[row].Cells[0].Value = Convert.ToDateTime(dt1.ToString("dd/MM/yyyy"));

and if it will not work properly then
for more date time formats see below link...

http://www.dotnetperls.com/datetime-format[^]

Happy to help
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900