Right expand menu (C#) : Menu « Components « ASP.Net






Right expand menu (C#)

<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>Menu HyperLink</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
    <asp:Menu
        id="Menu1"
        Runat="server">
        <Items>
            <asp:MenuItem 
                Text="Products"
                NavigateUrl="http://www.java2s.com" />
            <asp:MenuItem
                Text="Services"
                NavigateUrl="http://www.java2s.com">
                <asp:MenuItem
                    Text="Training"
                    NavigateUrl="http://www.java2s.com" />
                <asp:MenuItem
                    Text="Consulting"
                    NavigateUrl="http://www.java2s.com" />    
            </asp:MenuItem>        
        </Items>
    </asp:Menu>    
    
    </div>
    </form>
</body>
</html>

           
       








Related examples in the same category

1.Menu template (C#)
2.XML based Menu (C#)
3.Menu XML Complex (C#)
4.Hyper link Menu item (C#)
5.Menu with style (C#)
6.Three level right expand menu (C#)
7.Menu selected action (C#)