I have ASP.NET MVC3 installed. I need datepicker with formatted date. I tried this, but it\'s not working (when passing \"{0:dd/MM/yyyy}\" as format parameter, it still does
Display will depend on culture. And while in most cases all other answers are correct, it did not work for me. Culture issue will also cause different problems with jQuery datepicker, if attached.
If you wish to force the format escape / in the following manner:
@Html.TextBoxFor(model => model.YourDate, "{0:MM\\/dd\\/yyyy}")
If not escaped for me it show 08-01-2010 vs. expected 08/01/2010.
Also if not escaped jQuery datepicker will select different defaultDate, in my instance it was May 10, 2012.