fiogf49gjkf0d As long as the code is server side, then it would work.
When a dialog closes, the page does refresh, so the Session variable does work.
Now, if the Created Entity is linked via a Relationship, you could in theory reach it that way...
E.g.
MyEntity.ExtensionEntity.Field // for a One to One relationship
or
foreach (MyExtensionEntity extension in MyEntity.Extensions) //for One to Many relationship
{}
|