Documentation for: ASP.NET Ajax Version 1.0

This documentation is for a previous version. For the current released version, see the ASP.NET Ajax documentation on MSDN.

 

 

 

 

 

 

 

Skip Navigation Links.
ScriptManager Class
ScriptManager Constructor
AllowCustomErrorsRedirect Property
AsyncPostBackError Event
AsyncPostBackErrorMessage Property
AsyncPostBackSourceElementID Property
AsyncPostBackTimeout Property
AuthenticationService Property
EnablePageMethods Property
EnablePartialRendering Property
EnableScriptGlobalization Property
EnableScriptLocalization Property
GetCurrent Method (page)
IsDebuggingEnabled Property
IsInAsyncPostBack Property
LoadPostData Method (postDataKey, postCollection)
LoadScriptsBeforeUI Property
OnAsyncPostBackError Method (e)
OnInit Method (e)
OnPreRender Method (e)
OnResolveScriptReference Method (e)
ProfileService Property
RaisePostDataChangedEvent Method
RegisterArrayDeclaration Method
RegisterArrayDeclaration Method (control, arrayName, arrayValue)
RegisterArrayDeclaration Method (page, arrayName, arrayValue)
RegisterAsyncPostBackControl Method (control)
RegisterClientScriptBlock Method
RegisterClientScriptBlock Method (control, type, key, script, addScriptTags)
RegisterClientScriptBlock Method (page, type, key, script, addScriptTags)
RegisterClientScriptInclude Method
RegisterClientScriptInclude Method (control, type, key, url)
RegisterClientScriptInclude Method (page, type, key, url)
RegisterClientScriptResource Method
RegisterClientScriptResource Method (control, type, resourceName)
RegisterClientScriptResource Method (page, type, resourceName)
RegisterDataItem Method
RegisterDataItem Method (control, dataItem)
RegisterDataItem Method (control, dataItem, isJsonSerialized)
RegisterDispose Method (control, disposeScript)
RegisterExpandoAttribute Method (control, controlId, attributeName, attributeValue, encode)
RegisterExtenderControl Method (extenderControl, targetControl)
RegisterHiddenField Method
RegisterHiddenField Method (control, hiddenFieldName, hiddenFieldInitialValue)
RegisterHiddenField Method (page, hiddenFieldName, hiddenFieldInitialValue)
RegisterOnSubmitStatement Method
RegisterOnSubmitStatement Method (control, type, key, script)
RegisterOnSubmitStatement Method (page, type, key, script)
RegisterPostBackControl Method (control)
RegisterScriptControl Method (scriptControl)
RegisterScriptDescriptors Method
RegisterScriptDescriptors Method (extenderControl)
RegisterScriptDescriptors Method (scriptControl)
RegisterStartupScript Method
RegisterStartupScript Method (control, type, key, script, addScriptTags)
RegisterStartupScript Method (page, type, key, script, addScriptTags)
Render Method (writer)
ResolveScriptReference Event
ScriptMode Property
ScriptPath Property
Scripts Property
Services Property
SetFocus Method
SetFocus Method (clientID)
SetFocus Method (control)
SupportsPartialRendering Property
Visible Property

RegisterScriptControl Method (scriptControl)

Registers a script control with the current ScriptManager instance.

Syntax

CSharp

public void RegisterScriptControl<TScriptControl> (
	TScriptControl scriptControl
) where TScriptControl : Control, 

VisualBasic

Public Sub RegisterScriptControl(Of TScriptControl As {Control, }) ( _
	scriptControl As TScriptControl _
)

ManagedCPlusPlus

public:
generic<typename TScriptControl>
where TScriptControl : Control, 
virtual void RegisterScriptControl (
	TScriptControl scriptControl
) sealed

JSharp

J# supports the use of generic APIs, but not the declaration of new ones.

Generic Template Parameters

TScriptControl

Parameters

scriptControl (TScriptControl)

A Control that implements the IScriptControl interface.

Remarks

This method is primarily for use by control developers. Call the RegisterScriptControl() method from a custom Microsoft ASP.NET 2.0 AJAX Extensions script control during its onInit event handler to register that control with the page. An ASP.NET 2.0 AJAX Extensions script control must be registered to participate in partial-page rendering.

The RegisterScriptControl() method adds the specified script control to an internal list of script controls that is processed by the RegisterScripts() method during the PreRender event. At that time, each script control calls its RegisterScriptIncludes() method.

Exceptions

ExceptionCondition
ArgumentNullException

scriptControl is null.

Assembly: System.Web.Extensions (Module: System.Web.Extensions)