SyntaxFix
Write A Post
Hire A Developer
Questions
You can convert your string to a DateTime value like this:
DateTime
DateTime date = DateTime.Parse(something);
You can convert a DateTime value to a formatted string like this:
date.ToString("yyyyMMdd");