B Bill Priess Jul 9, 2003 #2 string newDate = DateTime.Parse("07/04/03").ToLongDateString(); (You may need to do a String.Format() on it, but I am not sure) HTH, Bill P.
string newDate = DateTime.Parse("07/04/03").ToLongDateString(); (You may need to do a String.Format() on it, but I am not sure) HTH, Bill P.
A Allen Jones Jul 9, 2003 #3 That will give you the day of week as well. Try: string s = DateTime.Parse("07/04/03").ToString("MMMM dd, yyyy"); Look at the System.Globalization.DateTimeFormatInfo Class for a description of the formatting string elements. Regards Allen
That will give you the day of week as well. Try: string s = DateTime.Parse("07/04/03").ToString("MMMM dd, yyyy"); Look at the System.Globalization.DateTimeFormatInfo Class for a description of the formatting string elements. Regards Allen