Skip to main content
A newer version of this page is available. .
Tab

SplitterPane.ContentUrl Property

Gets or sets the URL of a specific web page to be displayed within a pane.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue("")]
public string ContentUrl { get; set; }

Property Value

Type Default Description
String String.Empty

A string value that specifies a page’s URL.

Remarks

Use the ContentUrl property to specify the URL of a web page which should be loaded into, and displayed within, the current pane. A relative or an absolute URL can be used.

The ASPxClientSplitterPane.SetContentUrl and ASPxClientSplitterPane.GetContentUrl methods can be used to specify and obtain the URL of a pane’s content web page on the client side.

Note

It’s necessary to set the ContentUrl property (for instance, to any dummy value such as “about:blank”) to enable use of the ASPxClientSplitterPane.SetContentUrl client method and the SplitterPane.ContentUrlIFrameName server property. Otherwise, if the ContentUrl property is not set, the corresponding IFRAME element is not rendered within a pane. In this case, calling the ASPxClientSplitterPane.SetContentUrl method and defining the SplitterPane.ContentUrlIFrameName have no effect.

See Also