hi all,
my startdate is in "dd-MM-yyyy" format. But when I perform addDays, and convert to string, it add up the month instead of day.
Eg startdate is "09-06-2008"
but dt gives "07/09" instead of "10/06".
May I know how to convert it to "10/06"?
Thanks
DateTime myDateTime = DateTime.Parse(startdate);
myDateTime = myDateTime.AddDays(1);
string dt = myDateTime.ToString("dd/MM");
...
Go to the complete details ...