Util.Script (read-only, Object)
Represents the currently running script as an object. Returns Null if no script is currently running.
Util.Script
The property syntax has these parts:
Part | Description |
---|---|
Value (Object) | Represents the currently running script as an object. Returns Null if no script is currently running. |
If Not IsNull(Util.Script) Then
Response.Write Util.Script.imageCount ' Echo current image count in running script
End If
Global variables in the running script are available as properties of this object. Functions in the running script can be called through tis object. Be careful with the latter, you can create a deadlock situation.