Access displayName attribute from the model in MVC View

前端 未结 8 821
不思量自难忘°
不思量自难忘° 2021-02-06 22:51

If my model have

[DisplayName(\"First Name\")]
public string firstName { get; set; }

Then I can print it in the View with LabelFor



        
8条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-06 23:11

    @Html.DisplayFor(model => model.acc_first)
    

    should work for you. If not, try just

    @Model.acc_first
    

    Either one should work fine.

提交回复
热议问题