aspnet-devexpress-dot-web-dot-aspxtreeview-734d544d.md
Gets or sets the window or frame to which to target the contents of the URL associated with TreeView nodes.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue("")]
public string Target { get; set; }
<DefaultValue("")>
Public Property Target As String
| Type | Default | Description |
|---|---|---|
| String | String.Empty |
A string which identifies the window or frame to which to target the URL content.
|
Use the Target property to define the window or frame to which to target the contents of the URL. The available values are listed in the table below:
| Value | Description |
|---|---|
| name | The name of the target window or frame. |
| _blank | Load the linked document into a new blank window. This window is not named. |
| _parent | Load the linked document into the immediate parent of the document the link is in. |
| _search | Load the linked document into the browser search pane. |
| _self | Load the linked document into the window in which the link was clicked (the active window). |
| _top | Load the linked document into the topmost window. |
See Also