我正在尝试在我的班级中使用数据注释来显示在gridview
. 但这对我不起作用。
class Customer
{
[DataType(DataType.Date)]
[DisplayFormat(ApplyFormatInEditMode= true,DataFormatString = "MM/dd/yyyy")]
public DateTime DateRecorded { get; set; }
[DisplayFormat(DataFormatString = "{0:n}")]
public double Amount { get; set; }
}
gridview.DataSource = list of customer;