vote up 1 vote down star

I don't know how to using dynamic master page in ASP.NET MVC RC 1.0. Please help!

flag
Welcome to SO! Your question is too general. If you are having a specific problem, please edit your question and include as much detail as possible. – Dave Swersky Mar 10 at 15:45

2 Answers

vote up 6 vote down

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

link|flag
vote up 2 vote down

There's a reasonably maintainable solution discussed on http://forums.asp.net/p/1394235/2991293.aspx where you create a common site master descendant and use that for all your own views. There's also a CodeProject entry that looks interesting that uses a custom ViewEngine at http://www.codeproject.com/KB/aspnet/ASPNETMVCDynamicThemes.aspx.

I need to do this too, but I haven't tried either solution yet so I don't have a feel yet for which is better overall. IMO, dynamic skinning is a crucial feature for MVC, particularly to cater to user personalization.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.