TreeNode::NavigateUrl Property

 

Gets or sets the URL to navigate to when the node is clicked.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
property String^ NavigateUrl {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The URL to navigate to when the node is clicked. The default value is an empty string (""), which indicates that this property is not set.

The text of a node can be in one of two modes: selection mode or navigation mode. By default, a node is in selection mode. To put a node into navigation mode, set the node's NavigateUrl property to a value other than an empty string.

When a node is in navigation mode, all selection events are disabled for that node. Clicking the node in navigation mode links the user to the specified URL. You can optionally set the Target property to specify the window or frame in which to display the linked content.

The value of this property is stored in view state.

The following code example demonstrates how to set up the frames for the next code example.

No code example is currently available or this language may not be supported.

The following code example demonstrates how to use the NavigateUrl property to specify the URL to link to when the node is clicked. This example is used within the frameset of the previous example to display a table of contents.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: