Pergunta

I'm using an ASP.NET wizard control with a sidebar for navigation. I've got around ten wizard steps and they all appear in the sidebar but there are a few of them which I don't want to appear in the sidebar.

Can anyone suggest how to prevent specific wizard steps from being represented in the sidebar?

Thanks for looking :)

Foi útil?

Solução

Refer following link:

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.wizard.displaysidebar.aspx

Here is the referance code:

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

Or

Use Jquery to hide and show it.

Functions : .hide() , .show()

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top