** Incomplete
Script Directive Guidelines
Directive Properties
- Inherits
- Language
- Name
- This property is ignored for .ascx.jsx and .aspx.jsx files where the full type name is used as the name of the script within the InternalScriptManager automatically.
- Default Value:
- Enabled
- This property allows Scripts to be turned off globally within an ASP.NET application so that they will not be rendered to the page.
- Possible Values: true, false
- Default Value: true
- AutoRender
- This property is meant to allow for overriding the default behavior of the ScriptManager to automatically render a Script for .ascx.jsx or .aspx.jsx Template Control companion files. If "false" is specified, then the Script will not be rendered automatically and will require manual registration with the ScriptManager control via markup, or with the InternalScriptManager via code.
- Possible Values: true, false
- Default Value: true
- Singleton
- .
- Possible Values: true, false
- Default Value: true
- Type
- Consider getting rid of this.
Directive Example
<%@ScriptInherits="Float.ucCssCodeRegion"Language="C#"Singleton="true"ScriptType="File"AutoRender="false"Enabled="false"ScriptName="ucCssCodeRegion"%>