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
Loading
jothi kumarPosted Jul 26, 2014, 12:44 AM
Anupam SinghPosted Jul 25, 2014, 8:08 AM
DataFormatString = @"{0:dd\/MM\/yyyy}" instead of DataFormatString = "{0:yyyy-MM-dd}.
Guest UserPosted Jul 25, 2014, 6:28 AM