In the _ViewStart.cshtml
there's this code:
@{
Layout = "~/Views/Shared/_Layout.cshtml";
}
Which makes every view page imports it. What do I have to do when I don't want the page to load the Layout.cshtml
on it's view at all? I only want to do it on SOME pages, not all of them.