I need display time in my MVC4 app in a specific format.
[DisplayFormat(DataFormatString = "{0:f}")] public DateTime Eve_Date { get; set; }
I am using the above format.
I need a date in the following format: Sun, 11 July 2013, 5.30 PM . How is this possible?
source share