Hi All,
I have created my custom sitemap using staticSiteMapProvider. It is working properly. But now I have to make some enhancement in it. Actually my project supports multiple languages, for instance german and english. So I have to pass array of languageid and node title for both the languages inside SiteMapNode, while creating node.
Currently it is like below
SiteMapNode node = new SiteMapNode(this,
nodeId.ToString(),
url,
title, // Node display name
description);
Can someone please help me how can I pass array of title for both languages in above code snippet?
If any other way is there to implement that, please let me know. Basically have to maintain a single siteMap for all the supported languages in the project.
Thanks.