Some I'm running a slightly modified version of the Nancy Web Framework self hosting demo, Nancy.Demo.Hosting.Self. I've modified it to include the Nancy's Razor view engine, Nancy.ViewEngines.Razor. It works fine when I use basic Razor features, but I've run into trouble with @Render partial views and layouts.

Are these advanced features supported outside of ASP.NET?

The same views I copied from Nancy.Demo.Hosting.Aspnet, seem to work fine there.

I'm getting a crash about not finding my 'Header'.

Here's the view:

@{ Layout = "razor-layout.cshtml"; }
@section Header {
    <!-- This comment should appear in the header -->
}
<h1>Hello @Model.FirstName</h1>
<p>This is a sample Razor view!</p>
@section Footer {
    <p>This is footer content!</p>
}

And the Layout

<html>
<head>
    <title>Razor View Engine Demo - @Model.FirstName</title>
    @RenderSection("Header")
</head>
<body>
    <div id="body">@RenderBody()</div>
    <div id="footer">@RenderSection("Footer")</div>
    <div id="optional">@RenderSection("Optional", false)</div>
</body>
</html>
link|improve this question

75% accept rate
feedback

1 Answer

Are you sure your header cshtml file is set to copy to the output directory?

link|improve this answer
Yes, though I did hit that one first getting basic Razor working. I assume you mean those two files in the question. – kenny Nov 1 '11 at 11:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.