ScriptManager.SupportsPartialRendering Property

Definition

Gets a value that indicates whether the client supports partial-page rendering.

C#
[System.ComponentModel.Browsable(false)]
public bool SupportsPartialRendering { get; set; }

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:

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.

Applies to

Product Versions
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also