How much code is in your editor templates?
, , - , HTML , () HTML- .
, :
_Layout.cshtml
<p>
@Html.LabelFor(m => m):
</p>
<p>
@RenderSection("value")
</p>
<p>
@Html.ValidationMessageFor(m => m)
</p>
, :
String.cshtml
@model System.String
@{
Layout = "~/Views/Shared/EditorTemplates/_Layout.cshtml";
}
@section value{
@Html.TextBoxFor(m => m)
}
Password.cshtml
@model System.String
@{
Layout = "~/Views/Shared/EditorTemplates/_Layout.cshtml";
}
@section value{
@Html.PasswordFor(m => m)
}