I'm completely new to C# Asp.Net, and having trouble formatting the following string:
string defTo = string.Format (@"{0:yyyy\/MM\/dd}" , DateTime.Now);
It prints as: YYYYMMDD
I would like it to print as: YYYY/MM/DD <- Notice the forward slashes.
Can someone point out how I could achieve this?