ScriptManager::RegisterScriptControl<TScriptControl> Method (TScriptControl)
.NET Framework (current version)
Registers a script control with the current ScriptManager instance.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
public: generic<typename TScriptControl> where TScriptControl : Control, IScriptControl virtual void RegisterScriptControl( TScriptControl scriptControl ) sealed
Parameters
- scriptControl
-
Type:
TScriptControl
The script control to register.
Type Parameters
- TScriptControl
A control that implements the IScriptControl interface.
| Exception | Condition |
|---|---|
| ArgumentNullException | scriptControl is null. |
This method is primarily for use by control developers. Call the RegisterScriptControl<TScriptControl> method from a custom ASP.NET Ajax script control during its onInit event handler to register that control with the page. An ASP.NET Ajax script control must be registered to participate in partial-page rendering.
The RegisterScriptControl<TScriptControl> method adds the specified extender control to an internal list of script controls that is processed during the PreRender event.
.NET Framework
Available since 3.5
Available since 3.5
Show: