Search code examples
c#asp.netaspwizard

ASP.Net Remove Sidebar from Wizard Control


Any ideas how to remove/hide/disable and make invisible the sidebar (with all of the links in it) from a Wizard Control?

Cheers.


Solution

  • You can achieve this using the Wizard.DisplaySideBar Property like so:

    <asp:Wizard ID="wizard1" runat="server" DisplaySideBar="false">...