Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
145
How to create a simple webmenu?
posted

Does anyone know how to create a simple webmenu with sub menu. i am having trouble doing it. It seen like i have alot of javascript error. I just need a simple want only with sub menu. Thanks for all the help.

Parents
No Data
Reply
  • 4493
    posted

    After installing, let's say Infragistics NetAdvantage for ASP.NET 2008.2 CLR 3.5, and creating a simple website, you could do the following in your ASPX page:
    1. Register namespace with tagprefix:
    <%@ Register assembly="Infragistics35.WebUI.UltraWebNavigator.v8.2" namespace="Infragistics.WebUI.UltraWebNavigator" tagprefix="ignav" %>

    2. Put the menu you want:

    <ignav:ultrawebmenu id="ProcessMenu" runat="server"
    WebMenuTarget="VerticalMenu">
    <Items>
        <ignav:Item Text="Top Item">
        <!-- Here you will have the sub-items within this menu item -->
        <
    Items>
            
    <ignav:Item Text="SubTop Item 1" />
             
    <ignav:Item Text="SubTop Item 2" />
             
    <ignav:Item Text="SubTop Item 3" />
       
    </Items>
       
    </ignav:Item>
       
    <ignav:Item Text="Top Item 2" />
    </Items>
    </ignav:ultrawebmenu>

     Hope this helps,

Children