Specifies whether the code is run from:
// Code run from an AJAX process?
IF InAJAXMode() = True THEN
// AJAX mode
// Processes to perform
...
ELSE
// Non-AJAX mode
// Processes to perform
...
END
Syntax
<Result>: Boolean
ExecuteProcess returns
True if the current process is not in AJAX mode but if it was called from a process in AJAX mode (by InAJAXMode for example).
Remarks
Availability of the function
InAJAXMode can be used in all IDEs to allow for cross-platform code. Functions or procedures that use InAJAXMode can be shared between several products without generating any compilation error.
Business / UI classification: Neutral code