vote up 5 vote down star
2

I am adding MVC to a project that has MANY legacy webform pages. This works fine. However, I currently have a separate masterpage for MVC and for the webforms. The two master pages produce essentially identical output. I'd really like to kill the webforms one and just use the MVC master page with all my pages and stay DRY.

Not being DRY has already bitten me a couple times when I forgot to change both.

I tried doing the obvious way and just pointing the webform content page's MasterPage attribute at the MVC masterpage. This throws an error saying the MVC masters only work with MVC views.

This seems like it would be a pretty common problem with mixed MVC and webform projects. My MVC master isn't doing anything with ViewData, so I don't see any reason the webforms couldn't use them.

flag

78% accept rate
Did you find a way to do this from the other way. I.E MVC > Webforms especially regarding html helpers in the MVC masterpage. – Damien Sep 18 at 15:15

3 Answers

vote up 6 vote down check

You can absolutely share the same master page. Your MVC master page must simply point to the WebForms masterpage via its MasterPageFile attribute. This applies your WebForms MasterPage styles to your MVC MasterPage.

I am using this setup in production.

The declaration on my MVC Master Page, pointing at the Web Forms Master Page:

<%@ Master Language="C#" MasterPageFile="~/MasterPage/Site.Master"
AutoEventWireup="true" Inherits="System.Web.Mvc.ViewMasterPage" %>

Works like a charm.

link|flag
Yeah, that makes sense. However I would really prefer to do it the other way around and use the MVC master for the legacy pages as it's much better designed. – Craig Quillen May 8 at 20:35
I can't think of a way to force System.Web.Mvc.ViewMasterPage to allow child controls of type System.Web.UI.Page instead of System.Web.Mvc.ViewPage, but that is what you want in this scenario. – Peter J May 8 at 21:02
This works, but do you know a way around the way WebForms use the top level html form tag? stackoverflow.com/questions/1031252 – Keith Jun 23 at 8:11
Unfortunately, my master page does not use that form tag - so I'll be no help on that other question. – Peter J Jun 23 at 19:42
When I try this I get "Cannot find ContentPlaceHolder 'MainContent' in the master page '/Views/Shared/Site.Master'". My MVC master page contains only the 1 line you gave above, am I doing something wrong? – MrDustpan Aug 7 at 17:05
show 2 more comments
vote up 0 vote down

Not sure about your situation, but my WebForms master page contains a number of server controls and user controls (runat="server") the majority of which will not work when served up by the MVC stack.

I'm about to do a hybrid project, adding MVC into existing WebForms and plan on creating a new (duplicate style) master page.

Not ideal.

link|flag
1  
System.Web.Mvc.ViewMasterPage does inherit from System.Web.UI.MasterPage – Matt Davis May 8 at 19:44
vote up 0 vote down

In my webforms app, my master page inherits from "HLPUSD.SMART.SMARTMaster" which is just the namespace for our application and then the name of the webform class.

In my MVC project, the master page inherits from "System.Web.Mvc.ViewMasterPage"

Me thinks this has something to do with it?

link|flag

Your Answer

Get an OpenID
or

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