Is there a way to define static data that can be accessed by all components deployed on the same EP? (equivalent to Global.asax in asp.net)
Thanks.
Hi,
you can use the Application state, or the Cache state for all user or the Session state for a specific user. Keep in mind that these states are not shared between different .NET runtimes.
for example,
Application["key"] = obj;
Regards,
Tsachi
Add a comment