I can use ContentPlaceHolder\'s with Webforms view engines to put stuff in different locations in the master page.
How do I do that with Razor?
&
Yet again I managed to ask before finding the correct search keywords in Google.
In the layout
@RenderSection("footer", required: false)
View example
About Some stuff about this page. The current date and time: @DateTime.Now @section footer { Copyright (c) 2010, Robert Sundström. }
Some stuff about this page.
The current date and time: @DateTime.Now