How to format date in mvc web grid

前端 未结 4 1459
滥情空心
滥情空心 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:24

    grid.Column(
        "PublishDate", 
        "Published on",
        format: (item) => string.Format("{0:dd-MMM-yyyy}", item.PublishDate)
    )
    

提交回复
热议问题