I have a ASP.NET webforms project that has 100 plus web pages. All these pages have common Site.master master page.
We have started to convert our webforms project to MVC. So in MVC we have the _Layout.cshtml as our new Master Page. Everything from Site.master has been copied to _Layout.cshtml. Site.master is now blank.
Now I want to know how all the 100 plus web pages in my project can call this new MVC Layout.cshtml. So instead of calling Site.master, all the pages in my project should use Layout.cshtml as the new master page.