I have multiple pages that have this pattern.
<iframe frameborder ="0" src="[someURL]" width="100%" height="900">
</iframe>
I want to factor out everything but the URL into a master page so i tried this:
Master Page:
<iframe frameborder ="0" src=<asp:ContentPlaceHolder ID="Url" runat="server" /> width="100%" height="900">
</iframe>
Child Page:
<asp:Content ID="Content2" ContentPlaceHolderID="Url" runat="server">
"http://myURL"
</asp:Content>
but it doesn't seem to work. I get this error:
Cannot find ContentPlaceHolder 'Url' in the master page
Any suggestions if i have some syntax error above