Can we apply somehow the format for this?
[Display(Name = \"Date of Birthday\")]
[DataType(DataType.Date)]
public DateTime DOB { get; set; }
<
You can use the DisplayFormatAttribute
Specifies how data fields are displayed and formatted by ASP.NET Dynamic Data.
http://msdn.microsoft.com/en-us/library/system.componentmodel.dataannotations.displayformatattribute.aspx
[DisplayFormat(DataFormatString = "{0:dd MMM yyyy}")]
[Display(Name = "Date of Birthday")]
[DataType(DataType.Date)]
public DateTime DOB { get; set; }