We have a running solution contains many web forms
application with the same master page, we created a class library project for master page and its controls and reference it as a dll
inside each web form application and assign master page programatically
Now we will add two new application to our solution but we decided to use ASP.Net MVC 3
for building these new applications.
The problem is, we must use the same master page for the new applications, so how can we set the master page for our views using code?
Take care to remember our master page is a class library project.