Convert Date To ToShortDateString In Razor -


i have datetime field must shown in edit view

@html.editorfor( model => model.startdate ) 

how can use somthing ;

@html.editorfor( model => model.startdate.toshortdatestring() ) 

or custom function changing datetime view.

use [displayformat] attribute on view model:

public class myviewmodel {     [displayformat(dataformatstring = "{0:d}", applyformatineditmode = true)]     public datetime startdate { get; set; }      ...  } 

and in view simply:

@model myviewmodel ... @html.editorfor(model => model.startdate) 

Comments

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -