//For ex., Convert MM/dd/YYYY to dd/MM/yyyy
string date = “03/27/2008″; //format is MM/dd/yyyy
DateTimeFormatInfo dateTimeFormatterProvider = DateTimeFormatInfo.CurrentInfo.Clone() as DateTimeFormatInfo;
dateTimeFormatterProvider.ShortDatePattern = “MM/dd/yyyy”; //source date format
DateTime dateTime = DateTime.Parse(date, dateTimeFormatterProvider);
string formatted = dateTime.ToString(“dd/MM/yyyy”); //write the format in which you want the date tobe converted
Response.Write(“<br />” + formatted);
Tags: .NET, Convert Date Formats, Date Formats, Zonix Software, zonix Software Solutions, zonixsoft
November 11, 2008 at 5:04 am |
Very good post.