In MVC 3 with Razor view engine, you could establish the default layout page for all of your views. I can't seem to find a feature like this in ASP.NET razor pages (asp.net web pages with Razor)... anybody know if it exists?
Thanks.
|
In MVC 3 with Razor view engine, you could establish the default layout page for all of your views. I can't seem to find a feature like this in ASP.NET razor pages (asp.net web pages with Razor)... anybody know if it exists? Thanks.
| |||
|
feedback
|
|
You can choose a MVC View Master page, see here for screenshots: http://www.asp.net/mvc/tutorials/creating-page-layouts-with-view-master-pages-vb For the new ASP.Net WebPages stuff, its called _PageStart.cshtml (under ~/Shared/ folder). More info here: http://www.asp.net/webmatrix/tutorials/18-customizing-site-wide-behavior | |||||||||||
feedback
|
|
You can use Master pages in regular ASP.NET pages to set a common layout. | |||
feedback
|