How to get current date to display as MM/dd/yyyy
I have the the method DateTime today = DateTime.Today; I want the the following
DateTime dt = DateTime.Parse(today);
today= dt.ToString("MM/dd/yyyy");
No matter what I try it does not work.