You need to sign in to do that
Don't have an account?

"2007-10-29T10:38:36.000Z" how to convert this into datetime format for c#
"2007-10-29T10:38:36.000Z" how to convert this into datetime format for c#
amit@varstreet.com
You need to sign in to do that
Don't have an account?
Hi Amit,
Try converting it like
string strDate = "2007-10-29T10:38:36.000Z";
DateTime dtime = Convert.ToDateTime(strDate).ToString("dd/MM/yyyy");
Regards
Siddharth
Hi Amit,
Sorry ignore the previous one. Try converting it like
string strDate = "2007-10-29T10:38:36.000Z";
DateTime dtime = Convert.ToDateTime(strDate);
strDate = dtime.ToString("dd/MM/yyyy");
Regards
Siddharth
THANKS WE GOT IT
thanks again for quick response
Amit Lohogaonkar
amit@varstreet.com