html - ASP:Content master page control being called when not in markup? -
i'm using asp master page lay out content on webpage.
the site.master file looks this.
<div class="container fullwidth-main-content"> <asp:contentplaceholder id="fullwidthmaincontent" runat="server"> </asp:contentplaceholder> </div> <div class="container margin-main-content"> <asp:contentplaceholder id="marginmaincontent" runat="server"> </asp:contentplaceholder> </div>
now.. on default.aspx i'm calling <asp:contentplaceholder id="fullwidthmaincontent" control.
amongst other content controls.
however on portfolio.aspx page reason though i'm not calling <asp:contentplaceholder id="fullwidthmaincontent" control
it's still appearing underneith other content have called.
why happening?
Comments
Post a Comment