|
|
|
|
|
AJAXCancelAsynchronousCall (Function) In french: AJAXAnnuleAppelAsynchrone Cancels the automatic execution of the browser procedure called by AJAXExecuteAsynchronous. The server procedure called by AJAXExecuteAsynchronous will continue to run. Reminder Line: The browser procedure is used to process the result returned by the server procedure. When AJAXCancelAsynchronousCall is called, the result of the server procedure will not be processed
IF AJAXAvailable() = True THEN
Res is int
Res = AJAXExecuteAsynchronous(MaProc, ProcRésultat)
...
IF AJAXAsynchronousCallPending(Res) = True THEN
AJAXCancelAsynchronousCall(Res)
END
ELSE
...
END
Syntax
AJAXCancelAsynchronousCall(<Identifier of server procedure>)
<Identifier of server procedure>: Integer Identifier of the server procedure whose result will not be processed. This identifier was defined by AJAXExecuteAsynchronous. Remarks Older browsers AJAXAvailable is used to determine if the current browser supports AJAX technology. If a process that uses AJAX is run on a browser that does not support this technology, the process is run "as if" it did not use AJAX (e.g., the entire page is refreshed).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|