1

With the SiteMapPath control (navigation breadcrumbs), is there any way to NOT show the current node you are on? I only want to show the parents. There is a property to RenderCurrentNodeAsLink, but not what I'm looking for. Thanks!

Nelson Rothermel
  • 9,436
  • 8
  • 62
  • 81

1 Answers1

0

You can define an empty CurrentNodeTemplate:

<asp:SiteMapPath ID="yourSiteMapPath" runat="server">
    <CurrentNodeTemplate>
    </CurrentNodeTemplate>
</asp:SiteMapPath>
Frédéric Hamidi
  • 258,201
  • 41
  • 486
  • 479