I would like to set a value in Row_Updating and be able to access the same variable in Row_Updated… IS there any way to do it without using session nor $rsold or $rsnew ?
Define a global variable in Global Codes and use it within the server events. For example:In Global Codes:
$MyGlobalVariable = NULL;In server events:
global $MyGlobalVariable;
$MyGlobalVariable = …;
THank you !!!