- MVC3 Best Practise with Collections in Razor
- <div>
- <div>
- @Html.LabelFor(x => x.Foo, "Foo")
- </div>
- <div >
- @Html.TextBoxFor(x => x.Fishfood, new { style = "width: 200px" })
- </div>
- </div>
- <div>
- @Html.EditorFor(x => x.FooBarItems)
- <div>
- @foreach (var item in Model.Items)
- {
- <div>
- @Html.Label("Foo", item.Foo)
- </div>
- <div >
- @Html.TextBox(item.Fishfood, new { style = "width: 200px" })
- </div>
- }