The DateTime object has the "Date" Property that helps you retreive the Date alone. See the following snippet: DateTime fullDate = DateTime.Now; string fullDateString = fullDate.ToString(); DateTime datealone = fullDate.Date; string datealoneString = datealone.ToString("d");