tags:

views:

32

answers:

1

I have two different projects within a solution in ASP.NET MVC. Is there a way to have a master view shared between both projects?

+1  A: 

One solution would be to embed the master file into a shared assembly and implement a custom VirtualPathProvider.

Darin Dimitrov