I work in MVC5 and EntityFramework for displaying data into View.
right now in my view data format is :- 10/22/2014 12:00:00 AM But i want only date :- 22/10/2014 in this format
i try this code but it not working
@if (item.chekin_on_after != null)
{ @Html.DisplayFor(modelItem => item.chekin_on_after, "ShortDateTime")}
I also follow few link in stackoverflow but not helpful Date Format using Html.DisplayFor() in MVC5, Display only date and no time