Hi Keisha!
Everything looks fine to me with the web.config file. Are both sitemaps working or just one?
Here are a couple examples that I was able to get up and running. Only for the one site though, obviously. I used VWD Express. I like to bounce back and forth between source and design view but here's the code output.
Code:
<asp:Menu ID="mnuMainMenu" runat="server" DataSourceID="smdsMySite">
</asp:Menu>
<asp:SiteMapDataSource ID="smdsMySite" runat="server" />
Everything else is beautification, this is the guts of what you really need. Obviously, it's a webform, so this all has to be inside form tags. But I just added a Site Map data source and gave it an ID. Then I added a menu control, gave it an id and told it the ID of the data source I'd created.
I also took advantage of design view to add some default formatting. As you can see the formatting adds a ton of weight to it. However, all I did to get it though was start with the controls above, click the expander arrow of the menu in design view, click the Auto Format link, and I chose the "Colorful" Scheme. VWD added all the code automatically.
Code:
<asp:Menu ID="mnuMainMenu" runat="server" DataSourceID="smdsMySite" BackColor="#FFFBD6" DynamicHorizontalOffset="2" Font-Names="Verdana" Font-Size="0.8em" ForeColor="#990000" StaticSubMenuIndent="10px">
<StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
<DynamicHoverStyle BackColor="#990000" ForeColor="White" />
<DynamicMenuStyle BackColor="#FFFBD6" />
<StaticSelectedStyle BackColor="#FFCC66" />
<DynamicSelectedStyle BackColor="#FFCC66" />
<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
<StaticHoverStyle BackColor="#990000" ForeColor="White" />
</asp:Menu>
<asp:SiteMapDataSource ID="smdsMySite" runat="server" />
I always find it amazing how much garbage this generates though. The HTML this outputs is over 200 lines long, with 20,000 characters topping out at 19K filesize. Pretty unbelievable.
-------------------------
Whatever you can do or dream you can, begin it. Boldness has genius, power and magic in it. Begin it now.
-Johann von Goethe
When Two Hearts Race... Both Win.
-Dove Chocolate Wrapper
Chroniclemaster1, Founder of
www.EarthChronicle.com
A Growing History of our Planet, by our Planet, for our Planet.