How to use dynamic master page in ASP.NET MVC RC 1.0
I don't know how to using dynamic master page in ASP.NET MVC RC 1.0. Please help! You can specify the name of the master page when using the View() helper method: return View("About", "AlternateMaster", model); AlternateMaster would resolve to ~/Views/Shared/AlternateMaster.master Found this here I got this to work by creating a base controller that handled the OnActionExecuted event. In the OnActionExecutedevent I assign the master page. Then I made all my other controllers inherit from the base class. public class BaseController : Controller { protected override void OnActionExecuted