MVC 3 Razor EditorTemplate / DisplayTemplate母版页

时间:2011-03-12 17:55:28

标签: asp.net-mvc-3 razor

有没有人想出如何使用Master Pages for Editor&使用Razor的DisplayTemplates类似于Brad Wilson在此处记录的内容?

http://bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-5-master-page-templates.html

由于

1 个答案:

答案 0 :(得分:7)

这并没有像我原先想象的那样复杂。

一个小小的免责声明:这不是一个完整的审查,只是为了让它发挥作用。

这就是我所做的:

〜/查看/共享/ _TemplateMaster.cshtml

<div class="editor-label">
    <label for="@ViewData.ModelMetadata.PropertyName">@ViewData.ModelMetadata.GetDisplayName()</label>
</div>
<div class="editor-field">
    @RenderSection("DataContent")
</div>
<div>
    @Html.ValidationMessage("")
</div>

〜/查看/共享/ EditorTemplates / String.cshtml

@{
    Layout = "~/Views/Shared/_TemplateMaster.cshtml";
}

@section DataContent
{
    @Html.TextBox("", ViewData.TemplateInfo.FormattedModelValue, new { @class = "" })
}