You create a Web Form that contains a TreeView control. The TreeView control allows users to navigate within the Marketing section of your Web site. The following XML defines the site map for your site. <sitemapnode url="~\default.aspx" title="Home" description="Site Home Page"> <sitemapnode url="Sales.aspx" title="Sales" description="Sales Home"> <sitemapnode url="SalesWest.aspx" title="West Region" description="Sales for the West Region" /> <sitemapnode url="SalesEast.aspx" title="East Region" description="Sales for the East Region" /> </sitemapnode> <sitemapnode url="Marketing.aspx" title="Marketing" description="Marketing Home"> <sitemapnode url="MarketNational.aspx" title="National Campaign" description="National marketing campaign" /> <sitemapnode url="MarketMidwest.aspx" title="Midwest Campaign" description="Midwest region marketing campaign" /> <sitemapnode url="MarketSouth.aspx" title="South Campaign" description="South region marketing campaign" /> </sitemapnode> </sitemapnod
A、A. Add a SiteMapDataSource control to the Web Form and bind the TreeView control to it.
B、B. Add a SiteMapPath control to the Web Form and bind the TreeView control to it.
C、C. Embed the site map XML within the SiteMap node of a Web.sitemap file.
D、D. Embed the site map XML within the AppSettings node of a Web.config file.
E、E. Set the StartingNodeUrl property of the SiteMapDataSource control to ~/Marketing.aspx.
F、F. Set the SkipLinkText property of the SiteMapPath control to Sales.