I'm using the following code-snippet extensively in my model templates.
<div class="control-group">
@Html.LabelFor(model => model.FirstName)
<div class="controls">
@Html.TextBoxFor(model => model.FirstName, new { @class = "span3" })
@Html.ValidationMessageFor(model => model.FirstName)
</div>
</div>
Is it possible to encapsulate this generically in an editor template so I can use Html.EditorFor(...) without resorting to a custom extension?
See Question&Answers more detail:os