0
Hi,
Go through these links:
http://www.sql-server-helper.com/tips/date-formats.aspx
http://msdn.microsoft.com/en-us/library/az4se3k1.aspx
0
Hi,
Do like this::
string @DOB = DateTime.ParseExact(txtDOB.Text, "dd/MM/yyyy", System.Globalization.CultureInfo.CurrentUICulture. DateTimeFormat).ToString("MM/dd/yyyy");
Otherwise post the code here...
0
if you still find problem then provide us the code you are using, will try to find out the mistake.
thanks
0
Hi all,
Thanks for giving solutions.
I used 24 hours date format and now hour is appearing 00.
Thanks again
Kind Regards
Prasad
0
0
It's just struck me that the problem here is that you're using the 12 hour clock ("hh" format). If you change to the 24 hour format ("HH"), then it should get rid of the 12:00:00 i.e. dateobject.ToString("yyyy-MM-dd HH:mm:ss").
0
See if using dateobject.Date.ToString("yyyy-MM-dd hh:mm:ss") gets rid of the hour.