TreeNodeBinding.TargetField Property

Note: This property is new in the .NET Framework version 2.0.

Gets or sets the name of the field from the data source to bind to the Target property of a TreeNode object to which the TreeNodeBinding object is applied.

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

public:
property String^ TargetField {
	String^ get ();
	void set (String^ value);
}
/** @property */
public String get_TargetField ()

/** @property */
public void set_TargetField (String value)

public function get TargetField () : String

public function set TargetField (value : String)

Property Value

The name of the field to bind to the Target property of a TreeNode object to which the TreeNodeBinding object is applied. The default is an empty string (""), which indicates that the TargetField property is not set.

When the TreeView control is bound to a data source, use the TargetField property to specify the field name to bind to the Target property of a TreeNode object. The Target property is used to specify the window or frame in which to display the Web content that is linked to a node when that node is clicked.

This binding relationship affects all TreeNode objects to which the TreeNodeBinding object is applied.

NoteNote

You can selectively override the TargetField property by setting the Target property of each node directly.

Instead of using the TargetField property to bind the Target property of a TreeNode object to a field, you can set Target property to a fixed value by setting the Target property.

NoteNote

If the data source contains multiple fields, you must first set the Depth or DataMember property, or both properties in order to bind to the appropriate field.

The value of this property is stored in view state.

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: