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
This works for me, and allows for Null values
grid.Column("End_Date",format: item => ((item.End_Date == null) ? "" : item.End_Date.ToString("MM/dd/yyyy"))),