How to disable the links in sitemappath?

S

Swati Jain

Hello all,
can you please tell me how to disable links in SiteMapPath? I need it to show a path only without any links. RenderCurrentNodeAsLink = False is not enough.
 
G

Guest

One option is to handle the ItemDataBound event of the SiteMapPath:

if (e.Item.ItemType == SiteMapNodeItemType.Parent || e.Item.ItemType ==
SiteMapNodeItemType.Root)
{
((HyperLink)e.Item.Controls[0]).NavigateUrl = "";
}

Note that the above code assumes you have set RenderCurrentNodeAsLink to
false and the index value (zero above) may change if you have nested controls
in your node template.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,050
Latest member
AngelS122

Latest Threads

Top