Hyper link Menu item (C#) : Menu « Components « ASP.Net

Home
ASP.Net
1.ADO.net Database
2.Ajax
3.Asp Control
4.Collections
5.Components
6.Data Binding
7.Development
8.File Directory
9.HTML Control
10.Language Basics
11.Login Security
12.Mobile Control
13.Network
14.Page
15.Request
16.Response
17.Server
18.Session Cookie
19.Sitemap
20.Theme Style
21.User Control and Master Page
22.Validation by Control
23.Validation by Function
24.WebPart
25.WPF
26.XML
ASP.Net » Components » Menu 
Hyper link Menu item (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.Right expand menu (C#)
5.Menu with style (C#)
6.Three level right expand menu (C#)
7.Menu selected action (C#)
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.