我目前使用的代码是这样的:
@Html.LabelFor(model => model.MaxExecutions)
<div class="input-append">
@Html.TextBoxFor(model => model.MaxExecutions, new { @class = "input-xxlarge", placeholder="Enter Max Executions" })
<span class="add-on"><a href='#' class='title' rel='tooltip' title="Help Title" data-content="Help Message">?</a></span>
@Html.ValidationMessageFor(model => model.MaxExecutions)
</div>
我在我的代码中一遍又一遍地重复这一点。我很乐意将此传递给 HtmlHelper。我传入的模型类型可以更改,并且我希望模型中的 Display 属性可用(或者我只生成一个 htmlstring)。