I'm working on a new site that has a master page and then will use web forms. But the structure of the design is such that each web form is to have a consistent "footer" in the bottom with some important navigation. So I know that I can't do a master page inside of a master page right?
Right now I have Site.master which has the basic site shell. Then I have a Page.master which inherits the Site.master which has a header and footer for each page. The reason I broke it up was so that I can keep all my structural divs together... I don't want an ending div in a different file that its beginning because that is a maintenance nightmare. This site was orginally designed in ASP and uses <!--include--> statements for common html elements.
Inside the webform I'll need to have a div element that wraps everything. But at the bottom of the div I wish I could use another content placeholder for the common footer that has to go in. Any suggestions? This is my first go around with Master Pages and web forms. Please be gentle :)