Guest User

Untitled

a guest
Jul 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. @Html.EditorFor( model => model.StartDate )
  2.  
  3. @Html.EditorFor( model => model.StartDate.ToShortDateString() )
  4.  
  5. public class MyViewModel
  6. {
  7. [DisplayFormat(DataFormatString = "{0:d}", ApplyFormatInEditMode = true)]
  8. public DateTime StartDate { get; set; }
  9.  
  10. ...
  11.  
  12. }
  13.  
  14. @model MyViewModel
  15. ...
  16. @Html.EditorFor(model => model.StartDate)
Add Comment
Please, Sign In to add comment