RegisteredScriptType Enum

Definition

Specifies the type of client script block that is represented by a RegisteredScript object.

public enum class RegisteredScriptType
public enum RegisteredScriptType
type RegisteredScriptType = 
Public Enum RegisteredScriptType
Inheritance
RegisteredScriptType

Fields

ClientScriptBlock 1

A block of client code that executes one time during initial page rendering. A client script block of this type does not execute during partial-page updates.

ClientScriptInclude 0

A client script that executes every time that an asynchronous postback occurs.

ClientStartupScript 2

A client script that is associated with a control that executes when the control starts.

OnSubmitStatement 3

A client script that executes when a page is submitted.

Remarks

The script type indicates when the script is intended to be executed. This can be during page initialization, during page postback, during control startup, and so on.

Applies to