I want to format my DateTime field in razor in a clean way.

[MetadataType(typeof(Guestbook_Validation))]
public partial class web_GuestBook
{
    // Partial generated EF
}

[Bind(Exclude="Id")]
public class Guestbook_Validation
{
    [DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}")]
    public DateTime? DateEntered { get; set; }
}

Then

@item.DateEntered

But its still displaying as 05/01/2009 13:28:14

Where am I going wrong?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Use Html.DisplayFor(x => x.DateEntered) if you want the display format to be used.

link|improve this answer
feedback

See this answer:

Set DataFormatString for MVC3 DateTime

You have to use EditorFor in the view and use ApplyFormatInEditMode = true in your viewmodel - For textbox. To display only, use DisplayFor

link|improve this answer
I don't want a textbox I just want to display then text. I tried this anyway and it didn't work. – Matt Oct 16 '11 at 11:59
Oh right. Then try DisplayFor – rudeovski ze bear Oct 16 '11 at 23:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.