0

这就是我根据我的数据库列设置我的页面的方式:

在此处输入图像描述

这是代码(仅适用于第一列)

<table class="table">
    <tr>
        <th style="font-size: 20px">
            @Html.DisplayNameFor(model => model.fileName)
        </th>
        <th></th>
    </tr>

    @foreach (var item in Model)
    {
        <tr>
            <td style="font-size: 15px">
                @Html.DisplayFor(modelItem => item.fileName)
            </td>
            <td>
                @Html.ActionLink("File Details", "Details", new { id = item.id })
            </td>
        </tr>
    }

</table>

fileName在我的 html 页面上时如何更改为另一个字符串?

4

1 回答 1

1

我不知道这是否可行(我目前无法测试它,而不是在 Windows 上),

[Display(Name = "File Name")]    //this is the line you must add.
public string fileName{get;set;} //this is your model property name.

这应该将其更改为File Name

于 2013-11-08T18:09:09.407 回答