在此Microsoft Tutorial中,我们如何使用ASP.NET HTML Tag Helpers显示html单元格标签和值?例如,在教程的以下代码中,而不是使用file.read(24)
,我想使用标记帮助器。我尝试使用<td>@Html.DisplayFor(modelItem => item.BlogId)<\td>
,但intellisense无法识别<td><label asp-for="item.BlogId"></label><\td>
。
答案 0 :(得分:1)
标签中的标签助手将显示“显示属性名称”属性。要在视图中显示值BlogId,您可以执行以下操作。
<table>
@foreach (SampleApp.Controllers.Blog item in Model)
{
<tr><td>@item.BlogId</td></tr>
}
</table>
如果需要,可以将值包装在标签中。无需使用asp-for属性。