我正在使用 Mvc 4。以下是我的代码。
@Html.Bootstrap().ControlGroup().DisplayTextFor(m => m.BirthdayDate).Label().LabelText(Person.Resources.Global.BirthDay);
它显示带有日期和时间的数据。我只想显示日期。怎么做 ?
我已经尝试过 BirthDay.value.ToShortDateString() 和 BirthDay.ToString("dd/mm/yyyy")。但这会产生错误,因为 BirthDay 是 Nullable DateTime
如果我使用BirthDay.value.ToShortDateString() 和 BirthDay.ToString("dd/mm/yyyy") 和 someDate.Value.ToShortDateString()我收到以下错误
Templates can be used only with field access, property access, single-dimension array index, or single-parameter custom indexer expressions.