Issue
Needed to format dates in an MVC model. I wanted to use the attribute decorators for the properties.I just could not remember the syntax for DataFormatString
[Display(Name = "Date Notified")]
[DisplayFormat(DataFormatString = "{0:dd-MMM-yyyy} ")]
public DateTime? Received_Date { get; set; }
{0:dd MMMM yyyy} - gives 24 February 2006
{0:MMM dd} - gives Feb 24 (substitue MMM with MMMM for the full month name instead of abbreviation)
{0:dd/MM/yy} - gives 24/02/06
{0:dd/MM/yyyy} - gives 24/02/2006
No comments:
Post a Comment