How do I avoid calling the MVC _ViewStart for one page?

asp.net-mvc, layout

Solution

Source SO

As per this post by marcind

If you return `PartialView()` from your controllers (instead of return `View()`), then `_viewstart.cshtml` will not be executed.

Problem

I need to call the _ViewStart layout page for every page exept one. How do I skip it for just one page (let's call it a.cshtml)?

Original source

Related problems