Skip to content

Instantly share code, notes, and snippets.

@paulblamire
Last active December 26, 2015 22:39
Show Gist options
  • Save paulblamire/7224224 to your computer and use it in GitHub Desktop.
Save paulblamire/7224224 to your computer and use it in GitHub Desktop.
BootstrapHelper example usage
@using (Html.BeginForm())
{
using (Html.BeginFields())
{
<h4>Model Heading</h4>
<hr />
@Html.ValidationSummary(true)
@Html.Field(m => m.FirstName, @<text>@Html.EditorFor(item) @Html.ValidationMessageFor(item)</text>)
@Html.SubmitButton("create")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment