TreeNode::NavigateUrl Property
Gets or sets the URL to navigate to when the node is clicked.
Assembly: System.Web (in System.Web.dll)
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.
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.
Available since 2.0