I am using the following code to display my navigation. It reads the pages from my Global Navigation but only on the main page. When I click on a menu item (Pages/test.aspx) my menu items disappears. Is there anything I can modify in my code to prevent this? Here is the code...
<asp:Menu ID="Menu1"
runat="server"
Orientation="Horizontal"
CssSelectorClass="SimpleEntertainmentMenu"
EnableViewState="false"
UseEmbeddedScripts="false"
DataSourceID="SiteMapDataSource1">
</asp:Menu>
<asp:SiteMapDataSource ID="siteMapDataSource1" Runat="server"
SiteMapProvider="CombinedNavSiteMapProvider" EnableViewState="true"
StartFromCurrentNode="true" StartingNodeOffset="0" ShowStartingNode="false"/>
<asp:Menu ID="Menu1"
runat="server"
Orientation="Horizontal"
CssSelectorClass="SimpleEntertainmentMenu"
EnableViewState="false"
UseEmbeddedScripts="false"
DataSourceID="SiteMapDataSource1">
</asp:Menu>
<asp:SiteMapDataSource ID="siteMapDataSource1" Runat="server"
SiteMapProvider="CombinedNavSiteMapProvider" EnableViewState="true"
StartFromCurrentNode="true" StartingNodeOffset="0" ShowStartingNode="false"/>