我有一個與之相關的強類型模型視圖LabelFor()在foreach
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master"
Inherits="System.Web.Mvc.ViewPage<SomeNamespace.SomeViewModel>" %>
的SomeViewModel看起來像這樣
class SomeViewModel
{
public IEnumerable<Foo> Foos {get; set;}
}
說foo是
class Foo
{
public string Bar {get; set;}
}
並在視圖中
<% foreach (var item in Model.Foos) { %>
<tr>
<td>
<%= Html.LabelFor(f => f.Bar) %>
</td>
我不知道如何使用Html.LabelFor()
有人可以幫我這顯示item
Bar
財產?
感謝,
您是否獲得與該代碼錯誤? – AndrewC
@AndyC我不知道如何在Bar獲得循環變量'item'。 f => f。[這裏沒有酒吧。只有Foos]' –
@TheOtherGuy,我見過的大多數例子都將標籤硬編碼爲表格標題,然後在每個標籤之後完成。你是否在桌上展示你的?是否有一個原因,你需要在你的foreach標籤(它會只是不斷重複你的標籤的每一行) – Manatherin