I had a problem in site map path
I had navigation bar which take from sit map path
but I want site map path tack value from page as product
also how can i remove underline in site map path
this my site map path:
<asp:SiteMapPath ID="SiteMapPath1" runat="server" RenderCurrentNodeAsLink="True"
ForeColor="White">
<PathSeparatorStyle ForeColor="White" />
<NodeStyle ForeColor="White" />
<RootNodeStyle ForeColor="White" />
</asp:SiteMapPath>
For the sitemappath to take the page’s value just include it in you sitemap. But if you wish it to take a dynamic value then ı suppose you need to write your own sitemapprovider. Indeed nowadays I am trying to find a similar solution…
And to prevent underlining create a Css property for node style and within the definition of that css class set text-decoration: none;
and add this style to your node :