The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
200 views

SiteMapNode Attributes - values being lost (SharePoint 2010)

OK - I've created a custom navigation provider that inherits PortalSiteMapProvider and I'm trying to extend my class via the GetChildNodes method (Simple example here). Essentially what I'm trying to ...
0
votes
0answers
121 views

Getting Duplicate node in PortalSiteMapProvider.GlobalNavSiteMapProvider.CurrentNode;

I have sharepoint portal with 2 level of sites. My requirement is to show all sites and subsites from where the webpart is populated. So I created a webpart and deployed in root site, I used ...
0
votes
0answers
263 views

How to Set the SiteMapNode Title Dynamically from Master Page ? ASP.NET

In My Web.sitemap I have the following: <siteMapNode url="~/Groups/ViewGroups.aspx" urlRoute="groups/{PostId}/{PostTitle}" /> </siteMapNode> In my MasterPage I have implemented the ...
0
votes
1answer
304 views

xmlsitemapprovider multiple nodes with same URL

Google it around but cannot get the answer. <siteMapNode url="~/BV1Menu.aspx" title="Baseline Visit 1 Menu" description="Baseline Visit 1 Menu"> <siteMapNode url="~/Forms/RAND.aspx" ...
0
votes
1answer
2k views

How do I look up a SiteMapNode by its URL (or other key)?

I think the C# ASP.NET SiteMap uses URL as a dictionary key internally since it has to lookup by URL all the time, and forces them to be unique. I want to use that lookup table, but I can't seem to ...
0
votes
1answer
478 views

Asp menu control formatting sitemapnode

I'm trying to figured out how to separately format sitemapnodes which do not have a URL associated. Here's a code example: <siteMapNode title="TheThingIWantFormattedSeparately"> ...
0
votes
1answer
264 views

jquery dialog from sitemapnode

I Have a asp:Menu item in my masterpage file and it is using a sitemap. In my sitemap file, i have some sitemapnodes: <siteMapNode> <siteMapNode url="qq.aspx" title="qq" /> ...
0
votes
1answer
422 views

How to configure a custom SiteMapNode for a sitemap?

I created a class which inherits from SiteMapNode and overrode the Title property of it. However how and where do I configure it so that my sitemap (and custom sitemapprovider) takes this custom ...
7
votes
3answers
10k views

Using Web.SiteMap with Dynamic URLS (URL Routing)

I would like to match "approximate" matches in Web.SiteMap The Web.Sitemap static sitemap provider works well, except for one thing. IT'S STATIC! So, if I would have to have a sitemapnode for each ...