I am designing a website for avoid the code complexity i use controls for footer section and i call the control in master page itself. but now my client asks they not need footer for a particular page named contactus.
so, here any programmatic way to disable the control for a single page or any other solutions available?
my master page structure:
<form id="form1" runat="server">
<div id="bodywrapper">
<ucdart:Header ID="Header1" runat="server" />
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
<ucdart:Footer ID="Footer1" runat="server" />
</from>
1 Answer