我正在开发一个程序,其中一个显示项目被截断。编辑视图使用 TextAreaFor 并且有效。TextAreaFor 中的数据会换行。
<span class="vertical-space spaced-field">@Html.TextAreaFor(m => m.Number, new { style = "width: 175px;"})</span>
但是当视图显示时,它会被截断。
<body>
@foreach( var item in Model.OrderBy(p => p.EntryDate.Value))
{
<tr>
.
.
<td>@item.Number</td> ------ display truncated. Does not wrap
</tr>
}
</body>
如何使它像在编辑视图中一样包装