sfxpete wrote:Anyone at all, this is a desperate plee for help as I have some time limits on what I'm doing and would really like to use the oppertunity to explore v4 as opposed to v3 which I kno can do the job and may very well have to depending on if I can move forward!!!! :) :)
Strange, the following works for me in the latest beta:
Master :
<%@ Master Language="C#" MasterPageFile="/umbraco/masterpages/default.master" AutoEventWireup="true" %>
<asp:Content ContentPlaceHolderID="ContentPlaceHolderDefault" runat="server">
<asp:ContentPlaceHolder runat="server" id="MasterContentPlaceHolder" />
</asp:Content>
Child (with master=master quoted above):
<%@ Master Language="C#" MasterPageFile="/masterpages/Master.master" AutoEventWireup="true" %>
<asp:Content ContentPlaceHolderID="MasterContentPlaceHolder" runat="server">
html here
</asp:Content>