@Html.DisplayText will not actually display text

前端 未结 4 1112
一生所求
一生所求 2021-01-03 19:51

The following is the first section in the first row of a table on one of my ASP MVC3 Index pages. I\'ve stepped through the code when that page loads, and can see that the

4条回答
  •  無奈伤痛
    2021-01-03 20:26

    There are like 5 different ways of displaying text. In order to display a string you need to use

    @Html.DisplayName(string)
    

提交回复
热议问题