Skip to content

Instantly share code, notes, and snippets.

@Rookian
Last active December 11, 2015 03:58
Show Gist options
  • Save Rookian/4541754 to your computer and use it in GitHub Desktop.
Save Rookian/4541754 to your computer and use it in GitHub Desktop.
@using (Html.BeginForm("PostData", "Home", FormMethod.Post, new { id = "simpleForm" }))
{
ViewContext.ViewData.TemplateInfo.HtmlFieldPrefix = "list[0]";
<input type="hidden" name="list.Index" value="0" />
@Html.TextBoxFor(x => x.Name)
@Html.TextBoxFor(x => x.Description)
ViewContext.ViewData.TemplateInfo.HtmlFieldPrefix = "list[1]";
<input type="hidden" name="list.Index" value="1" />
@Html.TextBoxFor(x => x.Name)
@Html.TextBoxFor(x => x.Description)
<input type="submit" value="submit" id="btnSubmit" />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment