ASPxClientSplitterPane.SetContentUrl(url) Method
Sets the URL to point to a web page that should be loaded into, and displayed within the current pane, but should not be cached by a client browser.
Declaration
SetContentUrl(
url: string,
preventBrowserCaching?: boolean
): void
Parameters
Name | Type | Description |
---|---|---|
url | string | A string value specifying the URL to a web page displayed within the pane. |
preventBrowserCaching | boolean |
|
Remarks
Note
It’s necessary to set the SplitterPane.ContentUrl server-side property (for example, to a dummy value such as “javascript:false”, or “javascript:’ ‘“, or “javascript:void(0)”) to enable the use of the client SetContentUrl method. Otherwise, if the SplitterPane.ContentUrl property is not set, the corresponding IFRAME element is not rendered within a pane, and a call to the SetContentUrl method has no effect.
See Also