Util.Script Property

 Util.Script  (read-only, Object)
 
Represents the currently running script as an object. Returns Null if no script is currently running.

Syntax

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.

Remarks

Do not rely on Util.ScriptActive to test whether this is valid. Test this property explicitly for Null:
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.