Currently I have an Input form like this:
@Html.LabelFor(model => model.VenueID)
<div class="form-group">
@Html.LabelFor(model => model.VenueID, new { @class = "sr-only", @for = "txtVenueID" })
@Html.TextBoxFor(model => model.VenueID, new { @class = "form-control", @placeholder = "ID:" , @id="txtVenueID" })
@Html.ValidationMessageFor(model => model.VenueID)
</div>
You can add CSS classes using Razor syntax as shown below. All you need to do is specify the Bootstrap class(es) you want to use.
<div class="editor-field">
@Html.TextBoxFor(model => model.VenueID, new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.VenueID)
</div>