|
|
|
|
|
AJAXCancelAsynchronousCall (Function) 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(MyProc, ProcResult)
...
IF AJAXAsynchronousCallPending(Res) = True THEN
AJAXCancelAsynchronousCall(Res)
END
ELSE
...
END
Sintaxis
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. Observaciones Older browsers La función AJAXAvailable permite determinar si el navegador actual soporta AJAX. Si un proceso que utiliza AJAX se ejecuta en un navegador que no es compatible con esta tecnología, el proceso se ejecuta "como si" no utilizara AJAX (por ejemplo, se actualiza toda la página).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|