hello,
I am using visual web developer 2008.
Here i want to use two menu which gets data from sitemap.
In First SiteMap,I am having Home,Friends,Profiles and it is showing correctly in the first Menu.
But in the second SiteMap i am having Social,Contact,General and when i try to choose datas for the second menu it is displaying from the first site map.
Below are my Both SiteMap Codings
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="" title="" description="">
<siteMapNode url="main.aspx" title="Home" description="" />
<siteMapNode url="profile.aspx" title="Profile" description="" />
<siteMapNode url="friends.aspx" title ="Friends" description =""/>
</siteMapNode>
</siteMap>
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="" title="" description="">
<siteMapNode url="social.aspx" title="Social" description="" />
<siteMapNode url="contact.aspx" title="Contact" description="" />
<siteMapNode url="general.aspx" title ="General" description =""/>
</siteMapNode>
</siteMap>