Integrating Twitter Bootstrap with Asp.net MVC 3 forms
I am using Asp.net MVC 3 and Twitter Bootstrap. What I want is to integrate both of them. The big problem for me is forms. I am using the HtmlHelper and it is a problem, when it comes to the validation, I want it to generate HTML like this: <div class="control-group error"> <label for="field" class="control-label">OMG this label is so awesome: </label> <div class="controls"> <input type="text" name="field" id="field" value="yeah" /> <span class="help-inline">Eventually some error :C</span> </div> </div> Here is my HtmlHelper code: @Html.LabelFor(x => x.Field) @Html.EditorFor(x => x.Field)