Is it possible to add an attribute to an input field without the value whilst using @Html.TextBoxFor() - notice how the "data-plugin-datepicker" name has no value in the code snippet below.
So what I want is this:
<input name="DoB" id="DoB" type="text" data-plugin-datepicker class="form-control">
By using this:
@Html.TextBoxFor(m => m.DoB, new { @class = "form-control", ??? })