Click here to Skip to main content
15,881,715 members
Articles / Web Development / ASP.NET
Article

ASP.NET Menu using Sitemap and MasterPage

Rate me:
Please Sign up or sign in to vote.
1.65/5 (10 votes)
23 Aug 20072 min read 132K   4.5K   16   7
ASP.NET Menu using Sitemap and MasterPage

Introduction

Asp.Net menu control displays menu statically or dynamically using Sitemap Data Source control, which using site map control in ASP.Net. Here I am going to explain how to display menu using sitemap control.

A site map is made up of a series of related SiteMapNode objects. The SiteMapNodes are related in such a way as to form a hierarchy. The hierarchy contains a single root node, which is the sole node in the hierarchy that does not have a parent node. Each node in the hierarchy represents a logical section of the website. Each section can have a title, URL, description, and so on, which are modeled by the SiteMapNodes class's properties (Title, Url, Description, and so on).

Creating Sitemap file

From Visual Studio 2005 we can easily create the sitemap file by right clicking the website in the solution explorer, choosing Add NewItem, and then selecting the Site Map icon. The created file has a few <sitemapnode>XML elements.

The <sitemapnode>element can have a number of attributes. Here is some attributes which are mostly using,

- title (Specifies the title of the section).

- url (Specify the url of section. It must have unique).

- description (Specify the description of the section. Used in alt attribute).

Creating Master Page.

Create a master page in our website by right clicking the website in the solution explorer, choosing Add NewItem, and then selecting MasterPage icon. I'm going to link some aspx pages through our menu. So now we have to create some .aspx pages as a content page of masterpage. We can create aspx pages by right clicking the masterpage and choose the add content page, then rename it. Here we are going to create four pages namely Main.aspx, Menu1.aspx, Menu2.aspx and SubMenu1.aspx.

Using the code

After completing this process go to master page and copy the following code

<asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDataSource1">
</asp:Menu>

<asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" />

<asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
  </asp:contentplaceholder>

From the above, SiteMapDataSource is set to asp:Menu datasource. Then copy the following code in to sitemap file.

<sitemapnode title="Main Page" description="Main Page" url="Main.aspx" />
  <sitemapnode title="Menu one" description="Menu one" url="Menu1.aspx" />
  <sitemapnode title="Menu Two" description="Menu Two" url="Menu2.aspx" />
  <sitemapnode title="SubMenu One" description="SubMenu One" url="SubMenu1.aspx" />
  </sitemapnode />
</sitemapnode />

Now run the project …

That's it…

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
India India
Hi Viewers,

I wish to all. This is Vinoth. This is where I try to condense everything that you need to know about me.

Blog:

visit my blog

Interests:

I'm passionate about a great many things and continually learning about the things that interest me. They are wearable computers, User Interface Design, Artificial life, Industrial music.

Comments and Discussions

 
GeneralMy vote of 1 Pin
jain_ravi2-May-13 18:50
jain_ravi2-May-13 18:50 
Generalvery basic, but functional Pin
davehale2330-Apr-12 5:21
davehale2330-Apr-12 5:21 
GeneralMy vote of 1 Pin
fgarcia23-Oct-10 6:14
fgarcia23-Oct-10 6:14 
Generalone prob. guy$ Pin
nilong16-Dec-09 22:55
nilong16-Dec-09 22:55 
GeneralMy vote of 1 Pin
VMykyt16-Jul-09 20:37
VMykyt16-Jul-09 20:37 
GeneralMy vote of 1 Pin
nnei5-May-09 19:46
nnei5-May-09 19:46 
AnswerRe: My vote of 1 Pin
Purish Dwivedi15-Oct-09 1:33
Purish Dwivedi15-Oct-09 1:33 
this project doesn't work.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.