2011-12-29 57 views
2

在ASP.NET MVC中,使用EditorTemplates時有沒有辦法獲得循環索引?在過去,當我需要知道模型中某個元素的索引時,我放棄使用EditorTemplates來支持基本視圖中的for循環。我想知道是否有一種方法來獲取元素的索引,同時仍然使用EditorTemplates。在ASP.NET MVC中,使用EditorTemplates時有沒有辦法獲得循環索引?

我的for循環示例:

 @{int contentIndex = 0;} 
     @foreach (var item in Model.Content) 
     { 
      <p id="[email protected](contentIndex)"> 
       @Html.TextArea("Content["+contentIndex+"]", item) 
      </p> 
      contentIndex++; 
     } 

看我怎麼使用contentIndex段落ID?我希望能夠使用EditorTemplate而不是for循環來做到這一點。這可能嗎?

回答

相關問題