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