ScriptManager.RegisterScriptControl(Of 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 Sub RegisterScriptControl(Of TScriptControl As { Control, IScriptControl }) ( scriptControl As TScriptControl )
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(Of 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(Of 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: