RegisteredScriptType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Fields
Name | Value | Description |
---|---|---|
ClientScriptInclude | 0 | A client script that executes every time that an asynchronous postback occurs. |
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. |
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.