I have a DateTime field in my SQL Server DB, and I would like to display just the date in short date form on a label in a WinForm (C#). I still get 06/01/2013 12:00:00, thou
You can also use:
string shortDate = DateTime.Now.ToString("yyyy-MM-dd");
Change the yyyy-MM-dd format for the one you're looking for.
yyyy-MM-dd