This documentation is archived and is not being maintained.

ScriptManager::RegisterExtenderControl<TExtenderControl> Method

Registers an extender control with the current ScriptManager instance.

Namespace:  System.Web.UI
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)

public:
generic<typename TExtenderControl>
where TExtenderControl : Control, IExtenderControl 
virtual void RegisterExtenderControl(
	TExtenderControl extenderControl, 
	Control^ targetControl
) sealed

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.

ExceptionCondition
ArgumentNullException

extenderControl is nullptr.

- or -

targetControl is nullptr.

This method is primarily for use by control developers. Call the [M:System.Web.UI.ScriptManager.RegisterExtenderControl``1(``0,System.Web.UI.Control)l] 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 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5
Show: