what is the best way to convert a DateTime variable to a string and back again?
AAAh, solved my own problem.
String -> Date
string start = weblog.GetExtendedAttribute("StartDate");
this.StartDate.DateTime = DateTime.ParseExact(start, "MMMM, dd, YYYY", null);
Date->String
string
start = this.StartDate.DateTime.ToString("MMMM, dd, YYYY", null);
Copyright© 2008 Telligent Systems Inc. All rights reserved CommunityServer.com • Telligent.com