ScriptManager.SupportsPartialRendering Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether the client supports partial-page rendering.
public:
property bool SupportsPartialRendering { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(false)]
public bool SupportsPartialRendering { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.SupportsPartialRendering : bool with get, set
Public Property SupportsPartialRendering As Boolean
Property Value
true
if the client supports partial-page rendering; otherwise, false
. The default value is true
.
- Attributes
Exceptions
The EnablePartialRendering property is false
and the SupportsPartialRendering property was set to true
.
-or-
The SupportsPartialRendering property was set after the Init event.
Remarks
If the EnablePartialRendering property is set to false
, the SupportsPartialRendering property returns false
.
The default check to determine whether partial-page rendering is supported returns true
when the following conditions are true:
The W3CDomVersion property value must be greater than or equal to 1.0.
The EcmaScriptVersion property value must be greater than or equal to 1.0.
The SupportsCallback property value must be set to
true
.
When the SupportsPartialRendering property is explicitly set, these checks are not used.
Control developers should use the SupportsPartialRendering property to determine whether they should support partial-page rendering.