Moss SDK Learning (2)-operate the navigation bar in Moss

Source: Internet
Author: User

This example is very simple. It mainly demonstrates how to use the SDK to operate the navigation bar in Moss, that is, the link on the left of moss ,:

This example shows how to display the links in moss in winform and add some links.

Demo Effect

The main method is as follows:

  1. Get all navigation links under the sub-Website:

String _ mosssite = "http: // localhost: 999"; // URL of the website set

Spsite _ sitecollection = new spsite (_ mosssite );

 

// Get the navigation under the document library

Spweb site = _ sitecollection. allwebs ["Docs"];

 

// Place the navigation bar in ListBox for display

Spnavigationnodecollection nodes = site. Navigation. quicklaunch;

Listbox1.items. Clear ();

Foreach (spnavigationnode node in nodes)

{

Listbox1.items. Add (node. Title );

}

 

  1. Add your own navigation

Spweb site = _ sitecollection. allwebs ["Docs"];

 

Spnavigationnodecollection nodes = site. Navigation. quicklaunch;

Spnavigationnode navnode = new spnavigationnode (textbox1.text, textbox2.text, true );

Nodes. addasfirst (navnode );

 

Listbox1.items. Add (textbox1.text );

 

Demo download

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.