我有一个键/值对列表.基本上是一个List,其中ViewModel是表单的自定义类
public class ViewModel
{
public String Key { get; set; }
public String Value { get; set; }
}
在View中我需要分别为Key和Value渲染Label和Textbox.我试图使用Html.DisplayFor()但是它与模型一起使用并且只显示模型的属性而不是列表.
我想实现某种格式
<% foreach (var item in Model) { %>
<tr>
<td>
<%:Html.Display("item")%>
</td>
<td>
<%:Html.Display("item.Value")%>
</td>
</tr>
<% } %>
最佳答案 您可以尝试在主视图中使用一个编辑器模板,该模板将为模型的每个项目呈现(假设您的模型是一个集合).编辑器模板比显示模板更适合您的场景,因为您正在渲染允许编辑的文本框.因此,使用EditorFor而不是DisplayFor在语义上更正确:
<table>
<%= Html.EditorForModel() %>
</table>
然后为视图模型定义一个编辑器模板(〜/ Views / Home / EditorTemplates / ViewModel.ascx):
<%@ Control
Language="C#"
Inherits="System.Web.Mvc.ViewUserControl<YourAppName.Models.ViewModel>" %>
<tr>
<td>
<%: Model.Key %>
</td>
<td>
<%= Html.TextBoxFor(x => x.Value) %>
</td>
</tr>