How to format date in mvc web grid

前端 未结 4 1463
滥情空心
滥情空心 2021-02-05 11:03

I have a web grid and I am not using razor syntex.Rather I am using the .aspx form. the code is below;

<%
    var grid = new WebGrid(Model,defaultSort:\"Publi         


        
4条回答
  •  情深已故
    2021-02-05 11:19

    This worked for me:

    grid.Column("Date_Of_Birth", "Date Of Birth", format: item => ((item.Date_Of_Birth == null) ? "" : item.Date_Of_Birth.ToString("MM/dd/yyyy")))
    

提交回复
热议问题