Hi,I have the following code in a transformation:@%@ Import Namespace=@CMS.MacroEngine@ %@
@%@ Import Namespace=@CMS.Membership@ %@
@%
MacroContext.GlobalResolver.SetNamedSourceData(@FOO@, @201@);
%@
Basically, I want a global variable to be used in other transformations within that page. The problem is, this transformation is called after the other transformations, so the other transformations sees this variable as empty.How can I order transformations? By the way, my transformations are in different Viewers/Repeaters, because I have several data sources.
↧