ScriptManager.RegisterExtenderControl<TExtenderControl> Method
Registers an extender control with the current ScriptManager instance.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
public void RegisterExtenderControl<TExtenderControl>( TExtenderControl extenderControl, Control targetControl ) where TExtenderControl : Control, IExtenderControl
Type Parameters
- TExtenderControl
A control that implements the IExtenderControl interface.
Parameters
- extenderControl
- Type: TExtenderControl
The extender control to register.
- targetControl
- Type: System.Web.UI.Control
The script control that the extender control extends.
| Exception | Condition |
|---|---|
| ArgumentNullException | extenderControl is null. - or - targetControl is null. |
This method is primarily for use by control developers. Call the RegisterExtenderControl<TExtenderControl> method from a custom ASP.NET Ajax extender control during its onInit event handler to register that control with the page. An ASP.NET Ajax extender control must be registered to participate in partial-page rendering.
The RegisterExtenderControl<TExtenderControl> method adds the specified extender control to an internal list of extender controls and the target script controls they extend. This list is processed during the PreRender event.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.