how to set the date format while typing in textbox in mvc 5
hi to all,
here i'm set a field name startdate in textbox but the date format will takes(MM:DD:YYYY) now i want to change (DD:MM:YYYY).can anybody help for this task.
in modal:
[DataType(DataType.Date)] [DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)] public Nullable<System.DateTime> Start_date { get; set; }
IN VIews:-
@Html.TextBoxFor(m => m.Start_date, "{0:dd/MM/yyyy}")
Above code not work for me . Kindly help me please