将新导航节点添加到sharepoint 2010 Top Navigation

时间:2016-06-27 09:01:12

标签: sharepoint sharepoint-2010

我正在尝试在我的sharepoint网站的Top Navigation栏中添加一个新的导航节点,我正在使用以下代码:

public void AddNavigation(SPWeb web, String url, string module, string key)
{
    var resourceFile = "$Resources:" + module + "," + key;
    UnregisterGlobalNavigationLink(web, url);
    SPNavigationNode node = web.Navigation.GetNodeByUrl(url);
    if (node != null && overrideGlobalNavigationSetting) return node;
    node = new SPNavigationNode(resourceFile, url);
    node = web.Navigation.TopNavigationBar.AddAsLast(node);**//Exception here**
} 

但是我得到一个例外,我不知道如何解决:

An unexpected error occured while manipulating the navigational structure of this Web.

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

如果它是外部节点,您想要向节点构造函数添加另一个参数php app/console (bin/console) ...,所以它看起来像这样:

isExternal = true
编辑:外部我的意思是它指向网站集之外