1

I have a website in Sharepoint.

To get a list of sites ordered by the exploration, that is to say, ordered by the user in the sharepoint administration, i would write the following code:

 SPWeb web = CurrentSite.OpenWeb(currentSite);
 SPNavigation nav = web.Navigation;
 SPNavigationNodeCollection nodeColl = nav.QuickLaunch;

That is ok, but i need to do it with CAML. The only problem is that i don't know how to get the items ordered as the user did it, i get the items unordered or ordered by a column, i don't think there is a column for the user's order.

Plz give me some code.

4

1 回答 1

1

不幸的是,导航信息没有与库中的页面一起存储。导航可以存储更多刚刚发布的页面,因此导航必须存储在它自己的结构中。

这意味着没有内容查询。

于 2009-03-16T20:15:09.043 回答