如何更改@ Html.DisplayNameFor(model => model.name)的显示

时间:2017-03-10 05:14:51

标签: c# asp.net-mvc

我制作了一个DataBase Fisrt MVC项目,我遇到了一些问题。 这是我的一个观点的索引: 例如,我想

  

@ Html.DisplayNameFor(model => model.name)

显示为“用户”而不是“名称”。

我该怎么做?

提前致谢。

@model IEnumerable<dispensario.pacientes>

@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>

<p>
    @Html.ActionLink("Create New", "Create")
</p>
<table class="table">
    <tr>
        <th>
            @Html.DisplayNameFor(model => model.name)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.cedula)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.carnet)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.tipo_paciente)
        </th>
        <th>
            @Html.DisplayNameFor(model => model.estado)
        </th>
        <th></th>
    </tr>

@foreach (var item in Model) {
    <tr>
        <td>
            @Html.DisplayFor(modelItem => item.name)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.cedula)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.carnet)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.tipo_paciente)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.estado)
        </td>
        <td>
            @Html.ActionLink("Edit", "Edit", new { id=item.idPaciente }) |
            @Html.ActionLink("Details", "Details", new { id=item.idPaciente }) |
            @Html.ActionLink("Delete", "Delete", new { id=item.idPaciente })
        </td>
    </tr>
}

</table>

3 个答案:

答案 0 :(得分:4)

您可以将DisplayName属性添加到您的viewmodel。

[DisplayName("User")]
public string name { get; set; }

在您看来:       @ Html.DisplayNameFor(model =&gt; model.name)

或者你可以写&#34;用户&#34;查看而不是html帮助器。

即。在你看来:

<th>User</th>

答案 1 :(得分:3)

将DisplayName属性添加到您的媒体资源中以更改模型中的显示名称

[DisplayName("User")]
public string name { get; set; }

答案 2 :(得分:0)

我有同样的问题&#34;并在Visual Studio代码中正确使用数据注释 [DisplayName(&#34; User&#34;)] 我必须将使用System.ComponentModel; 添加到我的模型文件。没有这个使用我无法成功编译。希望这个提示可以帮助某人