ScriptManager.RegisterExtenderControl<'TExtenderControl> Method ('TExtenderControl, Control)
Registers an extender control with the current ScriptManager instance.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
abstract RegisterExtenderControl<'TExtenderControl when 'TExtenderControl : Control and IExtenderControl> : extenderControl:'TExtenderControl * targetControl:Control -> unit override RegisterExtenderControl<'TExtenderControl when 'TExtenderControl : Control and IExtenderControl> : extenderControl:'TExtenderControl * targetControl:Control -> unit
Parameters
- extenderControl
-
Type:
TExtenderControl
The extender control to register.
- targetControl
-
Type:
System.Web.UI.Control
The script control that the extender control extends.
Type Parameters
- TExtenderControl
A control that implements the IExtenderControl interface.
| 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.
Available since 3.5