我有这个:
[Display(Name = "Empresa")]
public string Company{ get; set; }
在我的 aspx 中,我有:
<th><%: Html.LabelFor(model => model.Company)%></th>
这会产生:
<th><label for="Company">Empresa</label></th>
是否有任何 html 助手扩展只显示没有标签的显示属性,只显示纯文本?我想要的输出是这样的:
<th>Empresa</th>
谢谢!
编辑
我按照建议尝试了 DisplayFor 或 DisplayTextFor ,但它们无效,因为它们生成:
<th>Amazon</th>
他们返回属性的值...我想要 Display 属性中的名称。