This is an ASP.NET MVC 3 exception message. What it says? What should I do?
OK, I have this code:
@{ Layout = \"~/_Layout.cshtml\"; Page.Title
The error message implies that your _Layout.cshtml does not include @RenderSection statements for the @sections that you have in your view.
_Layout.cshtml
@RenderSection
@section
Check your Layout and let us know.
See this page for more information.