EditorFor Template

时间:2013-01-23 20:49:16

标签: asp.net-mvc-4 mvc-editor-templates editorfor

对于设计问题,我需要在特定模板中包含大量输入文本。我希望使用编辑器模板,我写道:

查看

@Html.EditorFor(model => model.UserName, "bootstrap_FormInputControls")
@Html.EditorFor(model => model.Email, "bootstrap_FormInputControls")

EditorTemplates

@model MyModel
<div class="controls">
  @Html.TextBoxFor(m => m.Tag, new { placeholder = "Email" })
</div>

那当然不是一般..我希望使用EditorFor(电子邮件,用户名,...)中指定的值。可能吗? 提前致谢

0 个答案:

没有答案