Here is the site map content:
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode>
<siteMapNode url="~/Default.aspx" title="Home" description="Home Page"/>
<siteMapNode url="~/Product.aspx" title="Products" description="Our Products"/>
<siteMapNode url="~/Clients.aspx" title="Clients" description="About Our Clients"/>
<siteMapNode url="~/News.aspx" title="News" description="News About The Business"/>
<siteMapNode url="~/About.aspx" title="About Us" description="Business Overview"/>
<siteMapNode url="~/Contact.aspx" title="Contact" description="Contact Information"/>
<siteMapNode url="~/Recruitment.aspx" title="Recruitment" description="Our Recruitment Announcement"/>
<siteMapNode title="Admin" description="Administration Page">
<siteMapNode url="~/Admin/CreateAccount.aspx" title="Create Account" description="Create Account"/>
<siteMapNode url="~/Admin/NewsList.aspx" title="News Maintenance" description="News Maintenance"/>
<siteMapNode url="~/Admin/NewsCatList.aspx" title="News Category" description="News Category Maintenance"/>
<siteMapNode url="~/Admin/ItemCatList.aspx" title="Product Category" description="Product Category Maintenance"/>
</siteMapNode>
</siteMapNode>
</siteMap>
and here is the content of master page that menu control located:
<%@ master language="VB" autoeventwireup="true" inherits="HQWeb.MasterPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="generator" content="Microsoft Visual Studio, see http://msdn.microsoft.com/vstudio/" />
<meta name="Keywords" content="HQSoft" />
<meta name="Description" content="About HQSoft" />
<meta name="copyright" content="Copyright (c) 2007 Han Quang Software Co.,Ltd. All rights reserved." />
<link href="App_Themes/css-print.css" rel="stylesheet" type="text/css" media="print" />
<link rel="shortcut icon" href="Images/hq.ico" />
<title>HQSoft</title>
</head>
<body>
<form id="form1" runat="server">
<asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" ShowStartingNode="false" />
<div id="top-information">
<div id="logo">
<a href="Default.aspx">Han Quang Software Solution.</a></div>
<div id="top-information-home">
<asp:LoginView ID="LoginView1" runat="server">
<LoggedInTemplate>
Welcome back,
<asp:LoginName ID="LoginName1" runat="server" />
<br />
<br />
<asp:LoginStatus ID="LoginStatus1" runat="server" />
<br />
<br />
<a href="ChangePassword.aspx">Thay Đổi Mật Khẩu</a>
</LoggedInTemplate>
<AnonymousTemplate>
Bạn chưa đăng nhập.<br>
<br>
<a href="Login.aspx">Đăng Nhập</a><br>
<a href="Admin\CreateAccount.aspx">Tạo T?i Khoản</a>
</AnonymousTemplate>
</asp:LoginView>
</div>
</div>
<div id="nav-main">
<asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDataSource1" Orientation="Horizontal"
Width="604px" StaticSelectedStyle-CssClass="StaticSelectedStyle" >
<StaticSelectedStyle CssClass="StaticSelectedStyle" />
<DynamicMenuStyle BackColor="#3366FF" />
</asp:Menu>
<div>
</div>
</div>
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
<!--
FOOTER
-->
<div id="footer">
Copyright © 2007 Han Quang Software Co., Ltd.
<div>
</div>
</div>
<div id="footer-sub">
<asp:Menu ID="Menu2" runat="server" DataSourceID="SiteMapDataSource1" Orientation="Horizontal"
Width="500px" MaximumDynamicDisplayLevels="0"/>
</div>
</form>
</body>
</html>
Thanks
Han