Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I will try everything but not working this(dd/MM/yyyy) date format, this always gate mm/dd/yyyy

[Display(Name = "Release Date")]
[DataType(DataType.DateTime)]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:dd/MM/yyyy}")]
public Nullable<DateTime> release_date { get; set; }

razor view

@Html.EditorFor(model => model.release_date)

see this image.

and also using DateTime Template.

@model Nullable<System.DateTime>
@if (Model.HasValue)
{
    @Html.TextBox("", String.Format("{0:dd/MM/yyyy}", Model.Value))
}
else
{
    @Html.TextBox("", String.Format("{0:dd/MM/yyyy}", DateTime.Now))
}
@{
    string name = ViewData.TemplateInfo.HtmlFieldPrefix;
    string id = name.Replace(".", "_");
}
<script type="text/javascript">
    $(document).ready(function () {
        $("#@id").datepicker
            ({
                dateFormat: "dd/mm/yy",
                showStatus: true,
                showWeeks: true,
                highlightWeek: true,
                numberOfMonths: 1,
                showAnim: "scale",
                showOptions: {
                    origin: ["top", "left"]
                }
            });
    });
</script>
share|improve this question
2  
From the image it looks like the date is dd/mm/yyyy – Habib Aug 24 '12 at 11:59
2  
Note that "mm" is minutes, aside from anything else - so you probably mean "dd/MM/yyyy". – Jon Skeet Aug 24 '12 at 12:00
yes this is (24/08/2012) dd/MM/yyyy – Bhaumik Patel Aug 24 '12 at 12:01
2  
eh?, so what month is 24, I thought a year only had 12 months, what calendar are you using – saj Aug 24 '12 at 12:02
i will also try MM or mm and DD or dd but not working – Bhaumik Patel Aug 24 '12 at 12:03
show 2 more comments

2 Answers

up vote 2 down vote accepted

You missed 2 things here:

DataFormatString="{0:dd/MM/yyyy}"; //It is dd/MM/yyyy instead of dd/mm/yyyy

and you also need:

ApplyFormatInEditMode=true

Try to use this:

[Display(Name = "Release Date")]
[DataType(DataType.Date), DisplayFormat( DataFormatString="{0:dd/MM/yyyy}", ApplyFormatInEditMode=true )]
public Nullable<DateTime> release_date { get; set; }
share|improve this answer
1  
DataType(DataType.Date) that is working – Bhaumik Patel Aug 24 '12 at 13:03
What do you mean DataType(DataType.Date) is working? When I try this, I get a calendar to pick a date, but when I jump to the next field on the form, the date is still shown as mm/dd/yyyy. – comecme May 20 at 11:14

{0:dd/mm/yyyy} should be {0:dd/MM/yyyy} because mm means minutes, not months:

[Display(Name = "Release Date")]
[DataType(DataType.DateTime)]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:dd/MM/yyyy}")]
public Nullable<DateTime> release_date { get; set; }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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