I am trying to show the date as dd / MM / yyyy, but it continues to appear as MM / dd / yyyy in the view.
Model:
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:dd/MM/yyyy}")]
[Required]
public DateTime? HireDate { get; set; }
View:
@Html.DisplayFor(modelItem => item.HireDate)
source
share